Import Libraries¶

In [1]:
import pandas as pd
import numpy as  np
import requests 
import tweepy
import os
import json
import re
import time
import warnings

import matplotlib.pyplot as plt
%matplotlib inline

import seaborn as sns
sns.set_style('whitegrid')

import plotly 
import plotly.express as px
import plotly.graph_objs as go
import plotly.offline as py
from plotly.offline import iplot
from plotly.subplots import make_subplots
import plotly.figure_factory as ff

Enhanced Twitter Archive¶

In [2]:
twit_arc = pd.read_csv('twitter-archive-enhanced.csv')

Tweet Image Predictions¶

In [3]:
url = "https://d17h27t6h515a5.cloudfront.net/topher/2017/August/599fd2ad_image-predictions/image-predictions.tsv"
response = requests.get(url)

with open('image_predictions.tsv', mode='wb') as file:
    file.write(response.content)
image_predictions=pd.read_csv('image_predictions.tsv', sep='\t')

Twitter API¶

In [4]:
import tweepy
from tweepy import OAuthHandler
import json
from timeit import default_timer as timer

consumer_key= ''
consumer_secret=''
access_token=''
access_secret=''

# authorization of consumer key and consumer secret
auth=OAuthHandler('u7DV90CjkGigqXurSyh8PxvoH','6sy6GAnQgDEI6mjDooZFewLUPeSyXntbv4QWAEDxVhAtqh3fW0')

# set access to user's access key and access secret 
auth.set_access_token('1516391561218646018-eI5XsZIK16oCNaKGsbBzWSDMhRfJez','Sb0KmtqEFmucvqAbdBoG23V4kfaknyXdN268RY37sGDfA')

# calling the api 
api= tweepy.API(auth, wait_on_rate_limit= True)
print(api)

test=[]

tweet_ids=list(twit_arc.tweet_id)
with open ('tweet_json.txt', 'w') as outfile:
    for tweet_id in tweet_ids:
        try:
            tweet=api.get_status(tweet_id,tweet_mode='extended')
            x={'tweet_id':tweet.id,'retweet_count':tweet.retweet_count,
           'favourite_count':'tweet.favourite_count'}
            test.append(x)
            json.dump(tweet._json, outfile)
            outfile.write('\n')
        except tweepy.TweepyException as e:
           #print ("Fail", e)
            pass
<tweepy.api.API object at 0x000001FA008703D0>
Rate limit reached. Sleeping for: 351
In [5]:
tweets_info = []

with open ('tweet_json.txt') as file:
    for line in file:
        tweets_info.append(json.loads(line))
In [6]:
for i in range(0,len(tweets_info)):
    print(tweets_info[i])
{'created_at': 'Tue Aug 01 16:23:56 +0000 2017', 'id': 892420643555336193, 'id_str': '892420643555336193', 'full_text': "This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU", 'truncated': False, 'display_text_range': [0, 85], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 892420639486877696, 'id_str': '892420639486877696', 'indices': [86, 109], 'media_url': 'http://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg', 'url': 'https://t.co/MgUWQ76dJU', 'display_url': 'pic.twitter.com/MgUWQ76dJU', 'expanded_url': 'https://twitter.com/dog_rates/status/892420643555336193/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 540, 'h': 528, 'resize': 'fit'}, 'small': {'w': 540, 'h': 528, 'resize': 'fit'}, 'large': {'w': 540, 'h': 528, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 892420639486877696, 'id_str': '892420639486877696', 'indices': [86, 109], 'media_url': 'http://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg', 'url': 'https://t.co/MgUWQ76dJU', 'display_url': 'pic.twitter.com/MgUWQ76dJU', 'expanded_url': 'https://twitter.com/dog_rates/status/892420643555336193/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 540, 'h': 528, 'resize': 'fit'}, 'small': {'w': 540, 'h': 528, 'resize': 'fit'}, 'large': {'w': 540, 'h': 528, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6965, 'favorite_count': 33677, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Aug 01 00:17:27 +0000 2017', 'id': 892177421306343426, 'id_str': '892177421306343426', 'full_text': "This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV", 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 892177413194625024, 'id_str': '892177413194625024', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg', 'url': 'https://t.co/0Xxu71qeIV', 'display_url': 'pic.twitter.com/0Xxu71qeIV', 'expanded_url': 'https://twitter.com/dog_rates/status/892177421306343426/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1055, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 598, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1407, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 892177413194625024, 'id_str': '892177413194625024', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg', 'url': 'https://t.co/0Xxu71qeIV', 'display_url': 'pic.twitter.com/0Xxu71qeIV', 'expanded_url': 'https://twitter.com/dog_rates/status/892177421306343426/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1055, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 598, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1407, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5269, 'favorite_count': 29216, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jul 31 00:18:03 +0000 2017', 'id': 891815181378084864, 'id_str': '891815181378084864', 'full_text': 'This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB', 'truncated': False, 'display_text_range': [0, 121], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 891815175371796480, 'id_str': '891815175371796480', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg', 'url': 'https://t.co/wUnZnhtVJB', 'display_url': 'pic.twitter.com/wUnZnhtVJB', 'expanded_url': 'https://twitter.com/dog_rates/status/891815181378084864/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 891815175371796480, 'id_str': '891815175371796480', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg', 'url': 'https://t.co/wUnZnhtVJB', 'display_url': 'pic.twitter.com/wUnZnhtVJB', 'expanded_url': 'https://twitter.com/dog_rates/status/891815181378084864/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3463, 'favorite_count': 21965, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jul 30 15:58:51 +0000 2017', 'id': 891689557279858688, 'id_str': '891689557279858688', 'full_text': 'This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ', 'truncated': False, 'display_text_range': [0, 79], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 891689552724799489, 'id_str': '891689552724799489', 'indices': [80, 103], 'media_url': 'http://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg', 'url': 'https://t.co/tD36da7qLQ', 'display_url': 'pic.twitter.com/tD36da7qLQ', 'expanded_url': 'https://twitter.com/dog_rates/status/891689557279858688/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 891689552724799489, 'id_str': '891689552724799489', 'indices': [80, 103], 'media_url': 'http://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg', 'url': 'https://t.co/tD36da7qLQ', 'display_url': 'pic.twitter.com/tD36da7qLQ', 'expanded_url': 'https://twitter.com/dog_rates/status/891689557279858688/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7190, 'favorite_count': 36771, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jul 29 16:00:24 +0000 2017', 'id': 891327558926688256, 'id_str': '891327558926688256', 'full_text': 'This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f', 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [{'text': 'BarkWeek', 'indices': [129, 138]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 891327551943041024, 'id_str': '891327551943041024', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DF6hr6AVYAAZ8G8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF6hr6AVYAAZ8G8.jpg', 'url': 'https://t.co/AtUZn91f7f', 'display_url': 'pic.twitter.com/AtUZn91f7f', 'expanded_url': 'https://twitter.com/dog_rates/status/891327558926688256/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 720, 'h': 540, 'resize': 'fit'}, 'large': {'w': 720, 'h': 540, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 891327551943041024, 'id_str': '891327551943041024', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DF6hr6AVYAAZ8G8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF6hr6AVYAAZ8G8.jpg', 'url': 'https://t.co/AtUZn91f7f', 'display_url': 'pic.twitter.com/AtUZn91f7f', 'expanded_url': 'https://twitter.com/dog_rates/status/891327558926688256/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 720, 'h': 540, 'resize': 'fit'}, 'large': {'w': 720, 'h': 540, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}, {'id': 891327551947157504, 'id_str': '891327551947157504', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg', 'url': 'https://t.co/AtUZn91f7f', 'display_url': 'pic.twitter.com/AtUZn91f7f', 'expanded_url': 'https://twitter.com/dog_rates/status/891327558926688256/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 720, 'h': 540, 'resize': 'fit'}, 'large': {'w': 720, 'h': 540, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7710, 'favorite_count': 35162, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jul 29 00:08:17 +0000 2017', 'id': 891087950875897856, 'id_str': '891087950875897856', 'full_text': "Here we have a majestic great white breaching off South Africa's coast. Absolutely h*ckin breathtaking. 13/10 (IG: tucker_marlo) #BarkWeek https://t.co/kQ04fDDRmh", 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [{'text': 'BarkWeek', 'indices': [129, 138]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 891087942176911360, 'id_str': '891087942176911360', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg', 'url': 'https://t.co/kQ04fDDRmh', 'display_url': 'pic.twitter.com/kQ04fDDRmh', 'expanded_url': 'https://twitter.com/dog_rates/status/891087950875897856/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 899, 'h': 899, 'resize': 'fit'}, 'large': {'w': 899, 'h': 899, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 891087942176911360, 'id_str': '891087942176911360', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg', 'url': 'https://t.co/kQ04fDDRmh', 'display_url': 'pic.twitter.com/kQ04fDDRmh', 'expanded_url': 'https://twitter.com/dog_rates/status/891087950875897856/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 899, 'h': 899, 'resize': 'fit'}, 'large': {'w': 899, 'h': 899, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2583, 'favorite_count': 17736, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jul 28 16:27:12 +0000 2017', 'id': 890971913173991426, 'id_str': '890971913173991426', 'full_text': 'Meet Jax. He enjoys ice cream so much he gets nervous around it. 13/10 help Jax enjoy more things by clicking below\n\nhttps://t.co/Zr4hWfAs1H https://t.co/tVJBRMnhxl', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/Zr4hWfAs1H', 'expanded_url': 'https://gofundme.com/ydvmve-surgery-for-jax', 'display_url': 'gofundme.com/ydvmve-surgery…', 'indices': [117, 140]}], 'media': [{'id': 890971906207338496, 'id_str': '890971906207338496', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg', 'url': 'https://t.co/tVJBRMnhxl', 'display_url': 'pic.twitter.com/tVJBRMnhxl', 'expanded_url': 'https://twitter.com/dog_rates/status/890971913173991426/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 890971906207338496, 'id_str': '890971906207338496', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg', 'url': 'https://t.co/tVJBRMnhxl', 'display_url': 'pic.twitter.com/tVJBRMnhxl', 'expanded_url': 'https://twitter.com/dog_rates/status/890971913173991426/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1646, 'favorite_count': 10325, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jul 28 00:22:40 +0000 2017', 'id': 890729181411237888, 'id_str': '890729181411237888', 'full_text': "When you watch your owner call another dog a good boy but then they turn back to you and say you're a great boy. 13/10 https://t.co/v0nONBcwxq", 'truncated': False, 'display_text_range': [0, 118], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 890729118844600320, 'id_str': '890729118844600320', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/DFyBag_UQAAhhBC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFyBag_UQAAhhBC.jpg', 'url': 'https://t.co/v0nONBcwxq', 'display_url': 'pic.twitter.com/v0nONBcwxq', 'expanded_url': 'https://twitter.com/dog_rates/status/890729181411237888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1200, 'h': 1328, 'resize': 'fit'}, 'medium': {'w': 1084, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 614, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 890729118844600320, 'id_str': '890729118844600320', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/DFyBag_UQAAhhBC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFyBag_UQAAhhBC.jpg', 'url': 'https://t.co/v0nONBcwxq', 'display_url': 'pic.twitter.com/v0nONBcwxq', 'expanded_url': 'https://twitter.com/dog_rates/status/890729181411237888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1200, 'h': 1328, 'resize': 'fit'}, 'medium': {'w': 1084, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 614, 'h': 680, 'resize': 'fit'}}}, {'id': 890729118848892928, 'id_str': '890729118848892928', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg', 'url': 'https://t.co/v0nONBcwxq', 'display_url': 'pic.twitter.com/v0nONBcwxq', 'expanded_url': 'https://twitter.com/dog_rates/status/890729181411237888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 15671, 'favorite_count': 56627, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jul 27 16:25:51 +0000 2017', 'id': 890609185150312448, 'id_str': '890609185150312448', 'full_text': "This is Zoey. She doesn't want to be one of the scary sharks. Just wants to be a snuggly pettable boatpet. 13/10 #BarkWeek https://t.co/9TwLuAGH0b", 'truncated': False, 'display_text_range': [0, 122], 'entities': {'hashtags': [{'text': 'BarkWeek', 'indices': [113, 122]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 890609177319665665, 'id_str': '890609177319665665', 'indices': [123, 146], 'media_url': 'http://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg', 'url': 'https://t.co/9TwLuAGH0b', 'display_url': 'pic.twitter.com/9TwLuAGH0b', 'expanded_url': 'https://twitter.com/dog_rates/status/890609185150312448/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 890609177319665665, 'id_str': '890609177319665665', 'indices': [123, 146], 'media_url': 'http://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg', 'url': 'https://t.co/9TwLuAGH0b', 'display_url': 'pic.twitter.com/9TwLuAGH0b', 'expanded_url': 'https://twitter.com/dog_rates/status/890609185150312448/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3602, 'favorite_count': 24407, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jul 26 15:59:51 +0000 2017', 'id': 890240255349198849, 'id_str': '890240255349198849', 'full_text': 'This is Cassie. She is a college pup. Studying international doggo communication and stick theory. 14/10 so elegant much sophisticate https://t.co/t1bfwz5S2A', 'truncated': False, 'display_text_range': [0, 133], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 890240245463175168, 'id_str': '890240245463175168', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg', 'url': 'https://t.co/t1bfwz5S2A', 'display_url': 'pic.twitter.com/t1bfwz5S2A', 'expanded_url': 'https://twitter.com/dog_rates/status/890240255349198849/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 890240245463175168, 'id_str': '890240245463175168', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg', 'url': 'https://t.co/t1bfwz5S2A', 'display_url': 'pic.twitter.com/t1bfwz5S2A', 'expanded_url': 'https://twitter.com/dog_rates/status/890240255349198849/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6065, 'favorite_count': 27833, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jul 26 00:31:25 +0000 2017', 'id': 890006608113172480, 'id_str': '890006608113172480', 'full_text': 'This is Koda. He is a South Australian deckshark. Deceptively deadly. Frighteningly majestic. 13/10 would risk a petting #BarkWeek https://t.co/dVPW0B0Mme', 'truncated': False, 'display_text_range': [0, 130], 'entities': {'hashtags': [{'text': 'BarkWeek', 'indices': [121, 130]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 890006600089468928, 'id_str': '890006600089468928', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg', 'url': 'https://t.co/dVPW0B0Mme', 'display_url': 'pic.twitter.com/dVPW0B0Mme', 'expanded_url': 'https://twitter.com/dog_rates/status/890006608113172480/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 1199, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1601, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 890006600089468928, 'id_str': '890006600089468928', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg', 'url': 'https://t.co/dVPW0B0Mme', 'display_url': 'pic.twitter.com/dVPW0B0Mme', 'expanded_url': 'https://twitter.com/dog_rates/status/890006608113172480/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 1199, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1601, 'h': 1600, 'resize': 'fit'}}}, {'id': 890006600093753345, 'id_str': '890006600093753345', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/media/DFnwSY5XYAEwtc5.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFnwSY5XYAEwtc5.jpg', 'url': 'https://t.co/dVPW0B0Mme', 'display_url': 'pic.twitter.com/dVPW0B0Mme', 'expanded_url': 'https://twitter.com/dog_rates/status/890006608113172480/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 1199, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1601, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6111, 'favorite_count': 26925, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jul 25 16:11:53 +0000 2017', 'id': 889880896479866881, 'id_str': '889880896479866881', 'full_text': 'This is Bruno. He is a service shark. Only gets out of the water to assist you. 13/10 terrifyingly good boy https://t.co/u1XPQMl29g', 'truncated': False, 'display_text_range': [0, 107], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 889880888800096258, 'id_str': '889880888800096258', 'indices': [108, 131], 'media_url': 'http://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg', 'url': 'https://t.co/u1XPQMl29g', 'display_url': 'pic.twitter.com/u1XPQMl29g', 'expanded_url': 'https://twitter.com/dog_rates/status/889880896479866881/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 895, 'h': 971, 'resize': 'fit'}, 'large': {'w': 895, 'h': 971, 'resize': 'fit'}, 'small': {'w': 627, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 889880888800096258, 'id_str': '889880888800096258', 'indices': [108, 131], 'media_url': 'http://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg', 'url': 'https://t.co/u1XPQMl29g', 'display_url': 'pic.twitter.com/u1XPQMl29g', 'expanded_url': 'https://twitter.com/dog_rates/status/889880896479866881/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 895, 'h': 971, 'resize': 'fit'}, 'large': {'w': 895, 'h': 971, 'resize': 'fit'}, 'small': {'w': 627, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4139, 'favorite_count': 24463, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jul 25 01:55:32 +0000 2017', 'id': 889665388333682689, 'id_str': '889665388333682689', 'full_text': "Here's a puppo that seems to be on the fence about something haha no but seriously someone help her. 13/10 https://t.co/BxvuXk0UCm", 'truncated': False, 'display_text_range': [0, 106], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 889665366129029120, 'id_str': '889665366129029120', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/DFi579UWsAAatzw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg', 'url': 'https://t.co/BxvuXk0UCm', 'display_url': 'pic.twitter.com/BxvuXk0UCm', 'expanded_url': 'https://twitter.com/dog_rates/status/889665388333682689/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1080, 'h': 1350, 'resize': 'fit'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 889665366129029120, 'id_str': '889665366129029120', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/DFi579UWsAAatzw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg', 'url': 'https://t.co/BxvuXk0UCm', 'display_url': 'pic.twitter.com/BxvuXk0UCm', 'expanded_url': 'https://twitter.com/dog_rates/status/889665388333682689/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1080, 'h': 1350, 'resize': 'fit'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 8298, 'favorite_count': 41851, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jul 25 00:10:02 +0000 2017', 'id': 889638837579907072, 'id_str': '889638837579907072', 'full_text': "This is Ted. He does his best. Sometimes that's not enough. But it's ok. 12/10 would assist https://t.co/f8dEDcrKSR", 'truncated': False, 'display_text_range': [0, 91], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 889638825424826374, 'id_str': '889638825424826374', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg', 'url': 'https://t.co/f8dEDcrKSR', 'display_url': 'pic.twitter.com/f8dEDcrKSR', 'expanded_url': 'https://twitter.com/dog_rates/status/889638837579907072/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 889638825424826374, 'id_str': '889638825424826374', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg', 'url': 'https://t.co/f8dEDcrKSR', 'display_url': 'pic.twitter.com/f8dEDcrKSR', 'expanded_url': 'https://twitter.com/dog_rates/status/889638837579907072/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 889638825424809984, 'id_str': '889638825424809984', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/media/DFihzFfXcAAMRKN.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFihzFfXcAAMRKN.jpg', 'url': 'https://t.co/f8dEDcrKSR', 'display_url': 'pic.twitter.com/f8dEDcrKSR', 'expanded_url': 'https://twitter.com/dog_rates/status/889638837579907072/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3697, 'favorite_count': 23562, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jul 24 17:02:04 +0000 2017', 'id': 889531135344209921, 'id_str': '889531135344209921', 'full_text': "This is Stuart. He's sporting his favorite fanny pack. Secretly filled with bones only. 13/10 puppared puppo #BarkWeek https://t.co/y70o6h3isq", 'truncated': False, 'display_text_range': [0, 118], 'entities': {'hashtags': [{'text': 'BarkWeek', 'indices': [109, 118]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 889531127467266049, 'id_str': '889531127467266049', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg', 'url': 'https://t.co/y70o6h3isq', 'display_url': 'pic.twitter.com/y70o6h3isq', 'expanded_url': 'https://twitter.com/dog_rates/status/889531135344209921/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 889531127467266049, 'id_str': '889531127467266049', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg', 'url': 'https://t.co/y70o6h3isq', 'display_url': 'pic.twitter.com/y70o6h3isq', 'expanded_url': 'https://twitter.com/dog_rates/status/889531135344209921/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1873, 'favorite_count': 13305, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jul 24 00:19:32 +0000 2017', 'id': 889278841981685760, 'id_str': '889278841981685760', 'full_text': "This is Oliver. You're witnessing one of his many brutal attacks. Seems to be playing with his victim. 13/10 fr*ckin frightening #BarkWeek https://t.co/WpHvrQedPb", 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [{'text': 'BarkWeek', 'indices': [129, 138]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 889278779352338437, 'id_str': '889278779352338437', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/889278779352338437/pu/img/VlbFB3v8H8VwzVNY.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/889278779352338437/pu/img/VlbFB3v8H8VwzVNY.jpg', 'url': 'https://t.co/WpHvrQedPb', 'display_url': 'pic.twitter.com/WpHvrQedPb', 'expanded_url': 'https://twitter.com/dog_rates/status/889278841981685760/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 320, 'h': 568, 'resize': 'fit'}, 'small': {'w': 320, 'h': 568, 'resize': 'fit'}, 'medium': {'w': 320, 'h': 568, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 889278779352338437, 'id_str': '889278779352338437', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/889278779352338437/pu/img/VlbFB3v8H8VwzVNY.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/889278779352338437/pu/img/VlbFB3v8H8VwzVNY.jpg', 'url': 'https://t.co/WpHvrQedPb', 'display_url': 'pic.twitter.com/WpHvrQedPb', 'expanded_url': 'https://twitter.com/dog_rates/status/889278841981685760/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 320, 'h': 568, 'resize': 'fit'}, 'small': {'w': 320, 'h': 568, 'resize': 'fit'}, 'medium': {'w': 320, 'h': 568, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [40, 71], 'duration_millis': 5935, 'variants': [{'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/889278779352338437/pu/pl/IfTYoaAW0nRVGj_G.m3u8'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/889278779352338437/pu/vid/180x320/3GlIRAJBsw-sfUcI.mp4'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4417, 'favorite_count': 22015, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jul 23 00:22:39 +0000 2017', 'id': 888917238123831296, 'id_str': '888917238123831296', 'full_text': 'This is Jim. He found a fren. Taught him how to sit like the good boys. 12/10 for both https://t.co/chxruIOUJN', 'truncated': False, 'display_text_range': [0, 86], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 888917229776945152, 'id_str': '888917229776945152', 'indices': [87, 110], 'media_url': 'http://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg', 'url': 'https://t.co/chxruIOUJN', 'display_url': 'pic.twitter.com/chxruIOUJN', 'expanded_url': 'https://twitter.com/dog_rates/status/888917238123831296/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 888917229776945152, 'id_str': '888917229776945152', 'indices': [87, 110], 'media_url': 'http://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg', 'url': 'https://t.co/chxruIOUJN', 'display_url': 'pic.twitter.com/chxruIOUJN', 'expanded_url': 'https://twitter.com/dog_rates/status/888917238123831296/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3741, 'favorite_count': 25524, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jul 22 16:56:37 +0000 2017', 'id': 888804989199671297, 'id_str': '888804989199671297', 'full_text': 'This is Zeke. He has a new stick. Very proud of it. Would like you to throw it for him without taking it. 13/10 would do my best https://t.co/HTQ77yNQ5K', 'truncated': False, 'display_text_range': [0, 128], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 888804981515575296, 'id_str': '888804981515575296', 'indices': [129, 152], 'media_url': 'http://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg', 'url': 'https://t.co/HTQ77yNQ5K', 'display_url': 'pic.twitter.com/HTQ77yNQ5K', 'expanded_url': 'https://twitter.com/dog_rates/status/888804989199671297/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 888804981515575296, 'id_str': '888804981515575296', 'indices': [129, 152], 'media_url': 'http://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg', 'url': 'https://t.co/HTQ77yNQ5K', 'display_url': 'pic.twitter.com/HTQ77yNQ5K', 'expanded_url': 'https://twitter.com/dog_rates/status/888804989199671297/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 888804981515534336, 'id_str': '888804981515534336', 'indices': [129, 152], 'media_url': 'http://pbs.twimg.com/media/DFWra-3UwAAafeP.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFWra-3UwAAafeP.jpg', 'url': 'https://t.co/HTQ77yNQ5K', 'display_url': 'pic.twitter.com/HTQ77yNQ5K', 'expanded_url': 'https://twitter.com/dog_rates/status/888804989199671297/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3510, 'favorite_count': 22376, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jul 22 00:23:06 +0000 2017', 'id': 888554962724278272, 'id_str': '888554962724278272', 'full_text': "This is Ralphus. He's powering up. Attempting maximum borkdrive. 13/10 inspirational af https://t.co/YnYAFCTTiK", 'truncated': False, 'display_text_range': [0, 87], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 888554915546542081, 'id_str': '888554915546542081', 'indices': [88, 111], 'media_url': 'http://pbs.twimg.com/media/DFTH_OiUMAE-k4M.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFTH_OiUMAE-k4M.jpg', 'url': 'https://t.co/YnYAFCTTiK', 'display_url': 'pic.twitter.com/YnYAFCTTiK', 'expanded_url': 'https://twitter.com/dog_rates/status/888554962724278272/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1600, 'h': 1016, 'resize': 'fit'}, 'small': {'w': 680, 'h': 432, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 762, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 888554915546542081, 'id_str': '888554915546542081', 'indices': [88, 111], 'media_url': 'http://pbs.twimg.com/media/DFTH_OiUMAE-k4M.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFTH_OiUMAE-k4M.jpg', 'url': 'https://t.co/YnYAFCTTiK', 'display_url': 'pic.twitter.com/YnYAFCTTiK', 'expanded_url': 'https://twitter.com/dog_rates/status/888554962724278272/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1600, 'h': 1016, 'resize': 'fit'}, 'small': {'w': 680, 'h': 432, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 762, 'resize': 'fit'}}}, {'id': 888554915546537985, 'id_str': '888554915546537985', 'indices': [88, 111], 'media_url': 'http://pbs.twimg.com/media/DFTH_OiUIAEZ7sd.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFTH_OiUIAEZ7sd.jpg', 'url': 'https://t.co/YnYAFCTTiK', 'display_url': 'pic.twitter.com/YnYAFCTTiK', 'expanded_url': 'https://twitter.com/dog_rates/status/888554962724278272/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 445, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1047, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 785, 'resize': 'fit'}}}, {'id': 888554915663986688, 'id_str': '888554915663986688', 'indices': [88, 111], 'media_url': 'http://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg', 'url': 'https://t.co/YnYAFCTTiK', 'display_url': 'pic.twitter.com/YnYAFCTTiK', 'expanded_url': 'https://twitter.com/dog_rates/status/888554962724278272/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 742, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 989, 'resize': 'fit'}, 'small': {'w': 680, 'h': 420, 'resize': 'fit'}}}, {'id': 888554915664076800, 'id_str': '888554915664076800', 'indices': [88, 111], 'media_url': 'http://pbs.twimg.com/media/DFTH_O-VoAA0M6k.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFTH_O-VoAA0M6k.jpg', 'url': 'https://t.co/YnYAFCTTiK', 'display_url': 'pic.twitter.com/YnYAFCTTiK', 'expanded_url': 'https://twitter.com/dog_rates/status/888554962724278272/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1600, 'h': 958, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 719, 'resize': 'fit'}, 'small': {'w': 680, 'h': 407, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2861, 'favorite_count': 17241, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jul 20 16:49:33 +0000 2017', 'id': 888078434458587136, 'id_str': '888078434458587136', 'full_text': "This is Gerald. He was just told he didn't get the job he interviewed for. A h*ckin injustice. 12/10 didn't want the job anyway https://t.co/DK7iDPfuRX", 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 888078426338406400, 'id_str': '888078426338406400', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg', 'url': 'https://t.co/DK7iDPfuRX', 'display_url': 'pic.twitter.com/DK7iDPfuRX', 'expanded_url': 'https://twitter.com/dog_rates/status/888078434458587136/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 964, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1285, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 546, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 888078426338406400, 'id_str': '888078426338406400', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg', 'url': 'https://t.co/DK7iDPfuRX', 'display_url': 'pic.twitter.com/DK7iDPfuRX', 'expanded_url': 'https://twitter.com/dog_rates/status/888078434458587136/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 964, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1285, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 546, 'h': 680, 'resize': 'fit'}}}, {'id': 888078426338361344, 'id_str': '888078426338361344', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/DFMWn56WAAAYUcB.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFMWn56WAAAYUcB.jpg', 'url': 'https://t.co/DK7iDPfuRX', 'display_url': 'pic.twitter.com/DK7iDPfuRX', 'expanded_url': 'https://twitter.com/dog_rates/status/888078434458587136/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1269, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 952, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 539, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2884, 'favorite_count': 19086, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jul 19 16:06:48 +0000 2017', 'id': 887705289381826560, 'id_str': '887705289381826560', 'full_text': "This is Jeffrey. He has a monopoly on the pool noodles. Currently running a 'boop for two' midweek sale. 13/10 h*ckin strategic https://t.co/PhrUk20Q64", 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 887705281597243393, 'id_str': '887705281597243393', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg', 'url': 'https://t.co/PhrUk20Q64', 'display_url': 'pic.twitter.com/PhrUk20Q64', 'expanded_url': 'https://twitter.com/dog_rates/status/887705289381826560/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 900, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 887705281597243393, 'id_str': '887705281597243393', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg', 'url': 'https://t.co/PhrUk20Q64', 'display_url': 'pic.twitter.com/PhrUk20Q64', 'expanded_url': 'https://twitter.com/dog_rates/status/887705289381826560/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 900, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4514, 'favorite_count': 26511, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jul 19 03:39:09 +0000 2017', 'id': 887517139158093824, 'id_str': '887517139158093824', 'full_text': "I've yet to rate a Venezuelan Hover Wiener. This is such an honor. 14/10 paw-inspiring af (IG: roxy.thedoxy) https://t.co/20VrLAA8ba", 'truncated': False, 'display_text_range': [0, 108], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 887517108413886465, 'id_str': '887517108413886465', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/887517108413886465/pu/img/WanJKwssZj4VJvL9.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/887517108413886465/pu/img/WanJKwssZj4VJvL9.jpg', 'url': 'https://t.co/20VrLAA8ba', 'display_url': 'pic.twitter.com/20VrLAA8ba', 'expanded_url': 'https://twitter.com/dog_rates/status/887517139158093824/video/1', 'type': 'photo', 'sizes': {'small': {'w': 480, 'h': 480, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 480, 'h': 480, 'resize': 'fit'}, 'large': {'w': 480, 'h': 480, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 887517108413886465, 'id_str': '887517108413886465', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/887517108413886465/pu/img/WanJKwssZj4VJvL9.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/887517108413886465/pu/img/WanJKwssZj4VJvL9.jpg', 'url': 'https://t.co/20VrLAA8ba', 'display_url': 'pic.twitter.com/20VrLAA8ba', 'expanded_url': 'https://twitter.com/dog_rates/status/887517139158093824/video/1', 'type': 'video', 'sizes': {'small': {'w': 480, 'h': 480, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 480, 'h': 480, 'resize': 'fit'}, 'large': {'w': 480, 'h': 480, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [1, 1], 'duration_millis': 5133, 'variants': [{'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/887517108413886465/pu/vid/240x240/Hs2yRQTiDSLa7M8C.mp4'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/887517108413886465/pu/vid/480x480/NpOg7nB9xklNcXr_.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/887517108413886465/pu/pl/SHwbyNo3VB-OSZVv.m3u8'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9804, 'favorite_count': 40573, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jul 19 00:47:34 +0000 2017', 'id': 887473957103951883, 'id_str': '887473957103951883', 'full_text': 'This is Canela. She attempted some fancy porch pics. They were unsuccessful. 13/10 someone help her https://t.co/cLyzpcUcMX', 'truncated': False, 'display_text_range': [0, 99], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 887473949361045505, 'id_str': '887473949361045505', 'indices': [100, 123], 'media_url': 'http://pbs.twimg.com/media/DFDw2tsUAAEw7XW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFDw2tsUAAEw7XW.jpg', 'url': 'https://t.co/cLyzpcUcMX', 'display_url': 'pic.twitter.com/cLyzpcUcMX', 'expanded_url': 'https://twitter.com/dog_rates/status/887473957103951883/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 405, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 715, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 900, 'h': 1510, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 887473949361045505, 'id_str': '887473949361045505', 'indices': [100, 123], 'media_url': 'http://pbs.twimg.com/media/DFDw2tsUAAEw7XW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFDw2tsUAAEw7XW.jpg', 'url': 'https://t.co/cLyzpcUcMX', 'display_url': 'pic.twitter.com/cLyzpcUcMX', 'expanded_url': 'https://twitter.com/dog_rates/status/887473957103951883/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 405, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 715, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 900, 'h': 1510, 'resize': 'fit'}}}, {'id': 887473949386227712, 'id_str': '887473949386227712', 'indices': [100, 123], 'media_url': 'http://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg', 'url': 'https://t.co/cLyzpcUcMX', 'display_url': 'pic.twitter.com/cLyzpcUcMX', 'expanded_url': 'https://twitter.com/dog_rates/status/887473957103951883/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 901, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 14947, 'favorite_count': 59942, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jul 18 16:08:03 +0000 2017', 'id': 887343217045368832, 'id_str': '887343217045368832', 'full_text': 'You may not have known you needed to see this today. 13/10 please enjoy (IG: emmylouroo) https://t.co/WZqNqygEyV', 'truncated': False, 'display_text_range': [0, 88], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 887343120832229379, 'id_str': '887343120832229379', 'indices': [89, 112], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/887343120832229379/pu/img/6HSuFrW1lzI_9Mht.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/887343120832229379/pu/img/6HSuFrW1lzI_9Mht.jpg', 'url': 'https://t.co/WZqNqygEyV', 'display_url': 'pic.twitter.com/WZqNqygEyV', 'expanded_url': 'https://twitter.com/dog_rates/status/887343217045368832/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}, 'large': {'w': 1280, 'h': 720, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 887343120832229379, 'id_str': '887343120832229379', 'indices': [89, 112], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/887343120832229379/pu/img/6HSuFrW1lzI_9Mht.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/887343120832229379/pu/img/6HSuFrW1lzI_9Mht.jpg', 'url': 'https://t.co/WZqNqygEyV', 'display_url': 'pic.twitter.com/WZqNqygEyV', 'expanded_url': 'https://twitter.com/dog_rates/status/887343217045368832/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}, 'large': {'w': 1280, 'h': 720, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [16, 9], 'duration_millis': 17333, 'variants': [{'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/887343120832229379/pu/pl/IRqa3JWRV-6dT5bW.m3u8'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/887343120832229379/pu/vid/640x360/MqkCqqvfi68A-8xi.mp4'}, {'bitrate': 2176000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/887343120832229379/pu/vid/1280x720/FCiTl-fY7s5I_5eU.mp4'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/887343120832229379/pu/vid/320x180/hFsDGePMXqOYpOyl.mp4'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 8772, 'favorite_count': 29469, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jul 18 00:07:08 +0000 2017', 'id': 887101392804085760, 'id_str': '887101392804085760', 'full_text': 'This... is a Jubilant Antarctic House Bear. We only rate dogs. Please only send dogs. Thank you... 12/10 would suffocate in floof https://t.co/4Ad1jzJSdp', 'truncated': False, 'display_text_range': [0, 129], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 887101385971384320, 'id_str': '887101385971384320', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg', 'url': 'https://t.co/4Ad1jzJSdp', 'display_url': 'pic.twitter.com/4Ad1jzJSdp', 'expanded_url': 'https://twitter.com/dog_rates/status/887101392804085760/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 677, 'resize': 'fit'}, 'large': {'w': 1590, 'h': 1582, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1194, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 887101385971384320, 'id_str': '887101385971384320', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg', 'url': 'https://t.co/4Ad1jzJSdp', 'display_url': 'pic.twitter.com/4Ad1jzJSdp', 'expanded_url': 'https://twitter.com/dog_rates/status/887101392804085760/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 677, 'resize': 'fit'}, 'large': {'w': 1590, 'h': 1582, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1194, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4967, 'favorite_count': 26888, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jul 17 16:17:36 +0000 2017', 'id': 886983233522544640, 'id_str': '886983233522544640', 'full_text': "This is Maya. She's very shy. Rarely leaves her cup. 13/10 would find her an environment to thrive in https://t.co/I6oNy0CgiT", 'truncated': False, 'display_text_range': [0, 101], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 886983218871902208, 'id_str': '886983218871902208', 'indices': [102, 125], 'media_url': 'http://pbs.twimg.com/media/DE8yicKXoAAnSF8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DE8yicKXoAAnSF8.jpg', 'url': 'https://t.co/I6oNy0CgiT', 'display_url': 'pic.twitter.com/I6oNy0CgiT', 'expanded_url': 'https://twitter.com/dog_rates/status/886983233522544640/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 886983218871902208, 'id_str': '886983218871902208', 'indices': [102, 125], 'media_url': 'http://pbs.twimg.com/media/DE8yicKXoAAnSF8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DE8yicKXoAAnSF8.jpg', 'url': 'https://t.co/I6oNy0CgiT', 'display_url': 'pic.twitter.com/I6oNy0CgiT', 'expanded_url': 'https://twitter.com/dog_rates/status/886983233522544640/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 886983218867654656, 'id_str': '886983218867654656', 'indices': [102, 125], 'media_url': 'http://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg', 'url': 'https://t.co/I6oNy0CgiT', 'display_url': 'pic.twitter.com/I6oNy0CgiT', 'expanded_url': 'https://twitter.com/dog_rates/status/886983233522544640/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6284, 'favorite_count': 30228, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jul 16 23:58:41 +0000 2017', 'id': 886736880519319552, 'id_str': '886736880519319552', 'full_text': "This is Mingus. He's a wonderful father to his smol pup. Confirmed 13/10, but he needs your help\n\nhttps://t.co/bVi0Yr4Cff https://t.co/ISvKOSkd5b", 'truncated': False, 'display_text_range': [0, 121], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/bVi0Yr4Cff', 'expanded_url': 'https://www.gofundme.com/mingusneedsus', 'display_url': 'gofundme.com/mingusneedsus', 'indices': [98, 121]}], 'media': [{'id': 886736868116754432, 'id_str': '886736868116754432', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg', 'url': 'https://t.co/ISvKOSkd5b', 'display_url': 'pic.twitter.com/ISvKOSkd5b', 'expanded_url': 'https://twitter.com/dog_rates/status/886736880519319552/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 800, 'h': 533, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'large': {'w': 800, 'h': 533, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 886736868116754432, 'id_str': '886736868116754432', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg', 'url': 'https://t.co/ISvKOSkd5b', 'display_url': 'pic.twitter.com/ISvKOSkd5b', 'expanded_url': 'https://twitter.com/dog_rates/status/886736880519319552/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 800, 'h': 533, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'large': {'w': 800, 'h': 533, 'resize': 'fit'}}}, {'id': 886736868108378112, 'id_str': '886736868108378112', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/DE5Se8DXoAAZ4c9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DE5Se8DXoAAZ4c9.jpg', 'url': 'https://t.co/ISvKOSkd5b', 'display_url': 'pic.twitter.com/ISvKOSkd5b', 'expanded_url': 'https://twitter.com/dog_rates/status/886736880519319552/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2613, 'favorite_count': 10457, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jul 16 20:14:00 +0000 2017', 'id': 886680336477933568, 'id_str': '886680336477933568', 'full_text': "This is Derek. He's late for a dog meeting. 13/10 pet...al to the metal https://t.co/BCoWue0abA", 'truncated': False, 'display_text_range': [0, 71], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 886680331239161856, 'id_str': '886680331239161856', 'indices': [72, 95], 'media_url': 'http://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg', 'url': 'https://t.co/BCoWue0abA', 'display_url': 'pic.twitter.com/BCoWue0abA', 'expanded_url': 'https://twitter.com/dog_rates/status/886680336477933568/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 901, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 886680331239161856, 'id_str': '886680331239161856', 'indices': [72, 95], 'media_url': 'http://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg', 'url': 'https://t.co/BCoWue0abA', 'display_url': 'pic.twitter.com/BCoWue0abA', 'expanded_url': 'https://twitter.com/dog_rates/status/886680336477933568/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 901, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3717, 'favorite_count': 19650, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jul 15 23:25:31 +0000 2017', 'id': 886366144734445568, 'id_str': '886366144734445568', 'full_text': 'This is Roscoe. Another pupper fallen victim to spontaneous tongue ejections. Get the BlepiPen immediate. 12/10 deep breaths Roscoe https://t.co/RGE08MIJox', 'truncated': False, 'display_text_range': [0, 131], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 886366138128449536, 'id_str': '886366138128449536', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg', 'url': 'https://t.co/RGE08MIJox', 'display_url': 'pic.twitter.com/RGE08MIJox', 'expanded_url': 'https://twitter.com/dog_rates/status/886366144734445568/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 886366138128449536, 'id_str': '886366138128449536', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg', 'url': 'https://t.co/RGE08MIJox', 'display_url': 'pic.twitter.com/RGE08MIJox', 'expanded_url': 'https://twitter.com/dog_rates/status/886366144734445568/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 886366138124218369, 'id_str': '886366138124218369', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/DE0BTnPUMAEVdh5.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DE0BTnPUMAEVdh5.jpg', 'url': 'https://t.co/RGE08MIJox', 'display_url': 'pic.twitter.com/RGE08MIJox', 'expanded_url': 'https://twitter.com/dog_rates/status/886366144734445568/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 925, 'h': 1165, 'resize': 'fit'}, 'medium': {'w': 925, 'h': 1165, 'resize': 'fit'}, 'small': {'w': 540, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2612, 'favorite_count': 18478, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jul 15 16:51:35 +0000 2017', 'id': 886267009285017600, 'id_str': '886267009285017600', 'full_text': '@NonWhiteHat @MayhewMayhem omg hello tanner you are a scary good boy 12/10 would pet with extreme caution', 'truncated': False, 'display_text_range': [27, 105], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'nonwhitehat', 'name': 'Nonwhitehat', 'id': 1367857849301352455, 'id_str': '1367857849301352455', 'indices': [0, 12]}, {'screen_name': 'MayhewMayhem', 'name': 'Мейхью Мейхэм', 'id': 38308544, 'id_str': '38308544', 'indices': [13, 26]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 886266357075128321, 'in_reply_to_status_id_str': '886266357075128321', 'in_reply_to_user_id': 2281181600, 'in_reply_to_user_id_str': '2281181600', 'in_reply_to_screen_name': 'PresidentDawg', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4, 'favorite_count': 105, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sat Jul 15 16:17:19 +0000 2017', 'id': 886258384151887873, 'id_str': '886258384151887873', 'full_text': 'This is Waffles. His doggles are pupside down. Unsure how to fix. 13/10 someone assist Waffles https://t.co/xZDA9Qsq1O', 'truncated': False, 'display_text_range': [0, 94], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 886258377298292737, 'id_str': '886258377298292737', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg', 'url': 'https://t.co/xZDA9Qsq1O', 'display_url': 'pic.twitter.com/xZDA9Qsq1O', 'expanded_url': 'https://twitter.com/dog_rates/status/886258384151887873/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 886258377298292737, 'id_str': '886258377298292737', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg', 'url': 'https://t.co/xZDA9Qsq1O', 'display_url': 'pic.twitter.com/xZDA9Qsq1O', 'expanded_url': 'https://twitter.com/dog_rates/status/886258384151887873/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5251, 'favorite_count': 24434, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jul 15 02:45:48 +0000 2017', 'id': 886054160059072513, 'id_str': '886054160059072513', 'full_text': 'RT @Athletics: 12/10 #BATP https://t.co/WxwJmvjfxo', 'truncated': False, 'display_text_range': [0, 50], 'entities': {'hashtags': [{'text': 'BATP', 'indices': [21, 26]}], 'symbols': [], 'user_mentions': [{'screen_name': 'Athletics', 'name': "Oakland A's", 'id': 19607400, 'id_str': '19607400', 'indices': [3, 13]}], 'urls': [{'url': 'https://t.co/WxwJmvjfxo', 'expanded_url': 'https://twitter.com/dog_rates/status/886053434075471873', 'display_url': 'twitter.com/dog_rates/stat…', 'indices': [27, 50]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sat Jul 15 02:44:07 +0000 2017', 'id': 886053734421102592, 'id_str': '886053734421102592', 'full_text': '12/10 #BATP https://t.co/WxwJmvjfxo', 'truncated': False, 'display_text_range': [0, 11], 'entities': {'hashtags': [{'text': 'BATP', 'indices': [6, 11]}], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/WxwJmvjfxo', 'expanded_url': 'https://twitter.com/dog_rates/status/886053434075471873', 'display_url': 'twitter.com/dog_rates/stat…', 'indices': [12, 35]}]}, 'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 19607400, 'id_str': '19607400', 'name': "Oakland A's", 'screen_name': 'Athletics', 'location': 'Oakland, CA', 'description': 'Official Twitter of the nine-time World Series champion Athletics #RootedInOakland #DrumTogether', 'url': 'https://t.co/T2yfLCHSwg', 'entities': {'url': {'urls': [{'url': 'https://t.co/T2yfLCHSwg', 'expanded_url': 'http://www.athletics.com', 'display_url': 'athletics.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 609334, 'friends_count': 511, 'listed_count': 5586, 'created_at': 'Tue Jan 27 18:40:21 +0000 2009', 'favourites_count': 26354, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 63340, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': 'FCB514', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1568749505230831616/qwa4HGAJ_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1568749505230831616/qwa4HGAJ_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/19607400/1662854014', 'profile_link_color': '2B463A', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '7BD193', 'profile_text_color': '333333', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'quoted_status_id': 886053434075471873, 'quoted_status_id_str': '886053434075471873', 'quoted_status_permalink': {'url': 'https://t.co/WxwJmvjfxo', 'expanded': 'https://twitter.com/dog_rates/status/886053434075471873', 'display': 'twitter.com/dog_rates/stat…'}, 'quoted_status': {'created_at': 'Sat Jul 15 02:42:55 +0000 2017', 'id': 886053434075471873, 'id_str': '886053434075471873', 'full_text': 'Our snapchat story is h*ckin ridiculous right now. The @Athletics really know how to host a Bark at the Park\nhttps://t.co/gJx2GpMSyY https://t.co/6d2N0ctyC1', 'truncated': False, 'display_text_range': [0, 132], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'Athletics', 'name': "Oakland A's", 'id': 19607400, 'id_str': '19607400', 'indices': [55, 65]}], 'urls': [{'url': 'https://t.co/gJx2GpMSyY', 'expanded_url': 'https://www.snapchat.com/add/weratedogs', 'display_url': 'snapchat.com/add/weratedogs', 'indices': [109, 132]}], 'media': [{'id': 886053427184254976, 'id_str': '886053427184254976', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/DEvk5cNVwAAcISQ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEvk5cNVwAAcISQ.jpg', 'url': 'https://t.co/6d2N0ctyC1', 'display_url': 'pic.twitter.com/6d2N0ctyC1', 'expanded_url': 'https://twitter.com/dog_rates/status/886053434075471873/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 750, 'h': 1334, 'resize': 'fit'}, 'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 886053427184254976, 'id_str': '886053427184254976', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/DEvk5cNVwAAcISQ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEvk5cNVwAAcISQ.jpg', 'url': 'https://t.co/6d2N0ctyC1', 'display_url': 'pic.twitter.com/6d2N0ctyC1', 'expanded_url': 'https://twitter.com/dog_rates/status/886053434075471873/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 750, 'h': 1334, 'resize': 'fit'}, 'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 178, 'favorite_count': 2899, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'retweet_count': 93, 'favorite_count': 1361, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'und'}, 'is_quote_status': True, 'quoted_status_id': 886053434075471873, 'quoted_status_id_str': '886053434075471873', 'quoted_status_permalink': {'url': 'https://t.co/WxwJmvjfxo', 'expanded': 'https://twitter.com/dog_rates/status/886053434075471873', 'display': 'twitter.com/dog_rates/stat…'}, 'retweet_count': 93, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'und'}
{'created_at': 'Fri Jul 14 22:10:11 +0000 2017', 'id': 885984800019947520, 'id_str': '885984800019947520', 'full_text': 'Viewer discretion advised. This is Jimbo. He will rip ur finger right h*ckin off. Other dog clearly an accessory. 12/10 pls pet with caution https://t.co/BuveP0uMF1', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 885984792034004992, 'id_str': '885984792034004992', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg', 'url': 'https://t.co/BuveP0uMF1', 'display_url': 'pic.twitter.com/BuveP0uMF1', 'expanded_url': 'https://twitter.com/dog_rates/status/885984800019947520/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1183, 'resize': 'fit'}, 'large': {'w': 1200, 'h': 1183, 'resize': 'fit'}, 'small': {'w': 680, 'h': 670, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 885984792034004992, 'id_str': '885984792034004992', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg', 'url': 'https://t.co/BuveP0uMF1', 'display_url': 'pic.twitter.com/BuveP0uMF1', 'expanded_url': 'https://twitter.com/dog_rates/status/885984800019947520/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1183, 'resize': 'fit'}, 'large': {'w': 1200, 'h': 1183, 'resize': 'fit'}, 'small': {'w': 680, 'h': 670, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5589, 'favorite_count': 28476, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jul 13 15:58:47 +0000 2017', 'id': 885528943205470208, 'id_str': '885528943205470208', 'full_text': 'This is Maisey. She fell asleep mid-excavation. Happens to the best of us. 13/10 would pat noggin approvingly https://t.co/tp1kQ8i9JF', 'truncated': False, 'display_text_range': [0, 109], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 885528931826368512, 'id_str': '885528931826368512', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg', 'url': 'https://t.co/tp1kQ8i9JF', 'display_url': 'pic.twitter.com/tp1kQ8i9JF', 'expanded_url': 'https://twitter.com/dog_rates/status/885528943205470208/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1138, 'h': 1117, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1138, 'h': 1117, 'resize': 'fit'}, 'small': {'w': 680, 'h': 667, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 885528931826368512, 'id_str': '885528931826368512', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg', 'url': 'https://t.co/tp1kQ8i9JF', 'display_url': 'pic.twitter.com/tp1kQ8i9JF', 'expanded_url': 'https://twitter.com/dog_rates/status/885528943205470208/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1138, 'h': 1117, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1138, 'h': 1117, 'resize': 'fit'}, 'small': {'w': 680, 'h': 667, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5305, 'favorite_count': 31463, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jul 13 15:19:09 +0000 2017', 'id': 885518971528720385, 'id_str': '885518971528720385', 'full_text': 'I have a new hero and his name is Howard. 14/10 https://t.co/gzLHboL7Sk', 'truncated': False, 'display_text_range': [0, 47], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/gzLHboL7Sk', 'expanded_url': 'https://twitter.com/4bonds2carbon/status/885517367337512960', 'display_url': 'twitter.com/4bonds2carbon/…', 'indices': [48, 71]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'retweet_count': 3095, 'favorite_count': 17939, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jul 13 01:35:06 +0000 2017', 'id': 885311592912609280, 'id_str': '885311592912609280', 'full_text': 'RT @dog_rates: This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5', 'truncated': False, 'display_text_range': [0, 133], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 830583314243268608, 'id_str': '830583314243268608', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg', 'url': 'https://t.co/SATN4If5H5', 'display_url': 'pic.twitter.com/SATN4If5H5', 'expanded_url': 'https://twitter.com/dog_rates/status/830583320585068544/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}, 'source_status_id': 830583320585068544, 'source_status_id_str': '830583320585068544', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 830583314243268608, 'id_str': '830583314243268608', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg', 'url': 'https://t.co/SATN4If5H5', 'display_url': 'pic.twitter.com/SATN4If5H5', 'expanded_url': 'https://twitter.com/dog_rates/status/830583320585068544/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}, 'source_status_id': 830583320585068544, 'source_status_id_str': '830583320585068544', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 830583314213896192, 'id_str': '830583314213896192', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C4bTH6gWAAAV2ex.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4bTH6gWAAAV2ex.jpg', 'url': 'https://t.co/SATN4If5H5', 'display_url': 'pic.twitter.com/SATN4If5H5', 'expanded_url': 'https://twitter.com/dog_rates/status/830583320585068544/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 830583320585068544, 'source_status_id_str': '830583320585068544', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sun Feb 12 01:04:29 +0000 2017', 'id': 830583320585068544, 'id_str': '830583320585068544', 'full_text': 'This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5', 'truncated': False, 'display_text_range': [0, 94], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 830583314243268608, 'id_str': '830583314243268608', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg', 'url': 'https://t.co/SATN4If5H5', 'display_url': 'pic.twitter.com/SATN4If5H5', 'expanded_url': 'https://twitter.com/dog_rates/status/830583320585068544/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 830583314243268608, 'id_str': '830583314243268608', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg', 'url': 'https://t.co/SATN4If5H5', 'display_url': 'pic.twitter.com/SATN4If5H5', 'expanded_url': 'https://twitter.com/dog_rates/status/830583320585068544/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 830583314213896192, 'id_str': '830583314213896192', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/C4bTH6gWAAAV2ex.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4bTH6gWAAAV2ex.jpg', 'url': 'https://t.co/SATN4If5H5', 'display_url': 'pic.twitter.com/SATN4If5H5', 'expanded_url': 'https://twitter.com/dog_rates/status/830583320585068544/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 15354, 'favorite_count': 62202, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 15354, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jul 12 16:03:00 +0000 2017', 'id': 885167619883638784, 'id_str': '885167619883638784', 'full_text': 'Here we have a corgi undercover as a malamute. Pawbably doing important investigative work. Zero control over tongue happenings. 13/10 https://t.co/44ItaMubBf', 'truncated': False, 'display_text_range': [0, 134], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 885167573385588737, 'id_str': '885167573385588737', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/DEi_N9pXsAERvps.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEi_N9pXsAERvps.jpg', 'url': 'https://t.co/44ItaMubBf', 'display_url': 'pic.twitter.com/44ItaMubBf', 'expanded_url': 'https://twitter.com/dog_rates/status/885167619883638784/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 885167573385588737, 'id_str': '885167573385588737', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/DEi_N9pXsAERvps.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEi_N9pXsAERvps.jpg', 'url': 'https://t.co/44ItaMubBf', 'display_url': 'pic.twitter.com/44ItaMubBf', 'expanded_url': 'https://twitter.com/dog_rates/status/885167619883638784/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 885167573385576448, 'id_str': '885167573385576448', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/DEi_N9pXgAA8RQU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEi_N9pXgAA8RQU.jpg', 'url': 'https://t.co/44ItaMubBf', 'display_url': 'pic.twitter.com/44ItaMubBf', 'expanded_url': 'https://twitter.com/dog_rates/status/885167619883638784/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 885167573385576449, 'id_str': '885167573385576449', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/DEi_N9pXgAE41-v.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEi_N9pXgAE41-v.jpg', 'url': 'https://t.co/44ItaMubBf', 'display_url': 'pic.twitter.com/44ItaMubBf', 'expanded_url': 'https://twitter.com/dog_rates/status/885167619883638784/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}, {'id': 885167573389762560, 'id_str': '885167573389762560', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg', 'url': 'https://t.co/44ItaMubBf', 'display_url': 'pic.twitter.com/44ItaMubBf', 'expanded_url': 'https://twitter.com/dog_rates/status/885167619883638784/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3651, 'favorite_count': 19169, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jul 12 00:01:00 +0000 2017', 'id': 884925521741709313, 'id_str': '884925521741709313', 'full_text': "This is Earl. He found a hat. Nervous about what you think of it. 12/10 it's delightful, Earl https://t.co/MYJvdlNRVa", 'truncated': False, 'display_text_range': [0, 93], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 884925516695965696, 'id_str': '884925516695965696', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg', 'url': 'https://t.co/MYJvdlNRVa', 'display_url': 'pic.twitter.com/MYJvdlNRVa', 'expanded_url': 'https://twitter.com/dog_rates/status/884925521741709313/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 960, 'h': 1280, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 884925516695965696, 'id_str': '884925516695965696', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg', 'url': 'https://t.co/MYJvdlNRVa', 'display_url': 'pic.twitter.com/MYJvdlNRVa', 'expanded_url': 'https://twitter.com/dog_rates/status/884925521741709313/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 960, 'h': 1280, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 14936, 'favorite_count': 66970, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jul 11 20:47:12 +0000 2017', 'id': 884876753390489601, 'id_str': '884876753390489601', 'full_text': "This is Lola. It's her first time outside. Must test the earth and taste the atmosphere. 13/10 you're doing great Lola https://t.co/74TKAUsLkO", 'truncated': False, 'display_text_range': [0, 118], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 884876742820859904, 'id_str': '884876742820859904', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg', 'url': 'https://t.co/74TKAUsLkO', 'display_url': 'pic.twitter.com/74TKAUsLkO', 'expanded_url': 'https://twitter.com/dog_rates/status/884876753390489601/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1107, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1234, 'h': 1338, 'resize': 'fit'}, 'small': {'w': 627, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 884876742820859904, 'id_str': '884876742820859904', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg', 'url': 'https://t.co/74TKAUsLkO', 'display_url': 'pic.twitter.com/74TKAUsLkO', 'expanded_url': 'https://twitter.com/dog_rates/status/884876753390489601/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1107, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1234, 'h': 1338, 'resize': 'fit'}, 'small': {'w': 627, 'h': 680, 'resize': 'fit'}}}, {'id': 884876742816616450, 'id_str': '884876742816616450', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/DEe2tZWW0AIhXjS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEe2tZWW0AIhXjS.jpg', 'url': 'https://t.co/74TKAUsLkO', 'display_url': 'pic.twitter.com/74TKAUsLkO', 'expanded_url': 'https://twitter.com/dog_rates/status/884876753390489601/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 910, 'h': 1215, 'resize': 'fit'}, 'medium': {'w': 899, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 509, 'h': 680, 'resize': 'fit'}}}, {'id': 884876742741065730, 'id_str': '884876742741065730', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/DEe2tZEWAAIrpbu.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEe2tZEWAAIrpbu.jpg', 'url': 'https://t.co/74TKAUsLkO', 'display_url': 'pic.twitter.com/74TKAUsLkO', 'expanded_url': 'https://twitter.com/dog_rates/status/884876753390489601/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1269, 'h': 1273, 'resize': 'fit'}, 'medium': {'w': 1196, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 678, 'h': 680, 'resize': 'fit'}}}, {'id': 884876742753734656, 'id_str': '884876742753734656', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/DEe2tZHXUAA8r4k.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEe2tZHXUAA8r4k.jpg', 'url': 'https://t.co/74TKAUsLkO', 'display_url': 'pic.twitter.com/74TKAUsLkO', 'expanded_url': 'https://twitter.com/dog_rates/status/884876753390489601/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 546, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 938, 'h': 1168, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 938, 'h': 1168, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4639, 'favorite_count': 24291, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jul 11 00:00:02 +0000 2017', 'id': 884562892145688576, 'id_str': '884562892145688576', 'full_text': "This is Kevin. He's just so happy. 13/10 what is your secret Kevin https://t.co/1r4MFCbCX5", 'truncated': False, 'display_text_range': [0, 66], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 884562886777065473, 'id_str': '884562886777065473', 'indices': [67, 90], 'media_url': 'http://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg', 'url': 'https://t.co/1r4MFCbCX5', 'display_url': 'pic.twitter.com/1r4MFCbCX5', 'expanded_url': 'https://twitter.com/dog_rates/status/884562892145688576/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 884562886777065473, 'id_str': '884562886777065473', 'indices': [67, 90], 'media_url': 'http://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg', 'url': 'https://t.co/1r4MFCbCX5', 'display_url': 'pic.twitter.com/1r4MFCbCX5', 'expanded_url': 'https://twitter.com/dog_rates/status/884562892145688576/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3895, 'favorite_count': 21216, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jul 10 15:58:53 +0000 2017', 'id': 884441805382717440, 'id_str': '884441805382717440', 'full_text': 'I present to you, Pup in Hat. Pup in Hat is great for all occasions. Extremely versatile. Compact as h*ck. 14/10 (IG: itselizabethgales) https://t.co/vvBOcC2VdC', 'truncated': False, 'display_text_range': [0, 136], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 884441800177528832, 'id_str': '884441800177528832', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg', 'url': 'https://t.co/vvBOcC2VdC', 'display_url': 'pic.twitter.com/vvBOcC2VdC', 'expanded_url': 'https://twitter.com/dog_rates/status/884441805382717440/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 1172, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1600, 'h': 1562, 'resize': 'fit'}, 'small': {'w': 680, 'h': 664, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 884441800177528832, 'id_str': '884441800177528832', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg', 'url': 'https://t.co/vvBOcC2VdC', 'display_url': 'pic.twitter.com/vvBOcC2VdC', 'expanded_url': 'https://twitter.com/dog_rates/status/884441805382717440/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 1172, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1600, 'h': 1562, 'resize': 'fit'}, 'small': {'w': 680, 'h': 664, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4774, 'favorite_count': 23777, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jul 10 03:08:17 +0000 2017', 'id': 884247878851493888, 'id_str': '884247878851493888', 'full_text': "OMG HE DIDN'T MEAN TO HE WAS JUST TRYING A LITTLE BARKOUR HE'S SUPER SORRY 13/10 WOULD FORGIVE IMMEDIATE https://t.co/uF3pQ8Wubj", 'truncated': False, 'display_text_range': [0, 104], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/uF3pQ8Wubj', 'expanded_url': 'https://twitter.com/kaijohnson_19/status/883965650754039809', 'display_url': 'twitter.com/kaijohnson_19/…', 'indices': [105, 128]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'quoted_status_id': 883965650754039809, 'quoted_status_id_str': '883965650754039809', 'quoted_status_permalink': {'url': 'https://t.co/uF3pQ8Wubj', 'expanded': 'https://twitter.com/kaijohnson_19/status/883965650754039809', 'display': 'twitter.com/kaijohnson_19/…'}, 'quoted_status': {'created_at': 'Sun Jul 09 08:26:49 +0000 2017', 'id': 883965650754039809, 'id_str': '883965650754039809', 'full_text': 'Have you ever seen a more guilty pug?😂 https://t.co/Lhf4ECt1uL', 'truncated': False, 'display_text_range': [0, 38], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 883965641492922369, 'id_str': '883965641492922369', 'indices': [39, 62], 'media_url': 'http://pbs.twimg.com/media/DER6EUbWAAEOY9Z.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DER6EUbWAAEOY9Z.jpg', 'url': 'https://t.co/Lhf4ECt1uL', 'display_url': 'pic.twitter.com/Lhf4ECt1uL', 'expanded_url': 'https://twitter.com/Kaijohnson_19/status/883965650754039809/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 960, 'resize': 'fit'}, 'large': {'w': 720, 'h': 960, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 883965641492922369, 'id_str': '883965641492922369', 'indices': [39, 62], 'media_url': 'http://pbs.twimg.com/media/DER6EUbWAAEOY9Z.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DER6EUbWAAEOY9Z.jpg', 'url': 'https://t.co/Lhf4ECt1uL', 'display_url': 'pic.twitter.com/Lhf4ECt1uL', 'expanded_url': 'https://twitter.com/Kaijohnson_19/status/883965650754039809/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 960, 'resize': 'fit'}, 'large': {'w': 720, 'h': 960, 'resize': 'fit'}}}, {'id': 883965641421725696, 'id_str': '883965641421725696', 'indices': [39, 62], 'media_url': 'http://pbs.twimg.com/media/DER6EUKXoAA1t3B.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DER6EUKXoAA1t3B.jpg', 'url': 'https://t.co/Lhf4ECt1uL', 'display_url': 'pic.twitter.com/Lhf4ECt1uL', 'expanded_url': 'https://twitter.com/Kaijohnson_19/status/883965650754039809/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 960, 'resize': 'fit'}, 'large': {'w': 720, 'h': 960, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 3097795571, 'id_str': '3097795571', 'name': 'Kai Johnson', 'screen_name': 'Kaijohnson_19', 'location': 'Scotland, United Kingdom', 'description': 'Forensics student🤓 Citeh💙', 'url': 'https://t.co/pk8FMRc1OM', 'entities': {'url': {'urls': [{'url': 'https://t.co/pk8FMRc1OM', 'expanded_url': 'https://www.instagram.com/kaijohnson_19/', 'display_url': 'instagram.com/kaijohnson_19/', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 180, 'friends_count': 220, 'listed_count': 1, 'created_at': 'Thu Mar 19 21:55:32 +0000 2015', 'favourites_count': 501, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': False, 'statuses_count': 28, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': 'C0DEED', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1422844775426842625/k0SlCske_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1422844775426842625/k0SlCske_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/3097795571/1636155439', 'profile_link_color': '1DA1F2', 'profile_sidebar_border_color': 'C0DEED', 'profile_sidebar_fill_color': 'DDEEF6', 'profile_text_color': '333333', 'profile_use_background_image': True, 'has_extended_profile': True, 'default_profile': True, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 56789, 'favorite_count': 190801, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'retweet_count': 16809, 'favorite_count': 62954, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jul 09 21:29:42 +0000 2017', 'id': 884162670584377345, 'id_str': '884162670584377345', 'full_text': "Meet Yogi. He doesn't have any important dog meetings today he just enjoys looking his best at all times. 12/10 for dangerously dapper doggo https://t.co/YSI00BzTBZ", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 884162662212489221, 'id_str': '884162662212489221', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg', 'url': 'https://t.co/YSI00BzTBZ', 'display_url': 'pic.twitter.com/YSI00BzTBZ', 'expanded_url': 'https://twitter.com/dog_rates/status/884162670584377345/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 611, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1278, 'h': 1148, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1078, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 884162662212489221, 'id_str': '884162662212489221', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg', 'url': 'https://t.co/YSI00BzTBZ', 'display_url': 'pic.twitter.com/YSI00BzTBZ', 'expanded_url': 'https://twitter.com/dog_rates/status/884162670584377345/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 611, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1278, 'h': 1148, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1078, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2493, 'favorite_count': 17873, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jul 09 00:00:04 +0000 2017', 'id': 883838122936631299, 'id_str': '883838122936631299', 'full_text': "This is Noah. He can't believe someone made this mess. Got the vacuum out for you though. Offered to help clean pup. 12/10 super good boy https://t.co/V85xujjDDY", 'truncated': False, 'display_text_range': [0, 137], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 883838118432034816, 'id_str': '883838118432034816', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg', 'url': 'https://t.co/V85xujjDDY', 'display_url': 'pic.twitter.com/V85xujjDDY', 'expanded_url': 'https://twitter.com/dog_rates/status/883838122936631299/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 981, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 556, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1175, 'h': 1438, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 883838118432034816, 'id_str': '883838118432034816', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg', 'url': 'https://t.co/V85xujjDDY', 'display_url': 'pic.twitter.com/V85xujjDDY', 'expanded_url': 'https://twitter.com/dog_rates/status/883838122936631299/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 981, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 556, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1175, 'h': 1438, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2850, 'favorite_count': 19077, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jul 08 00:28:19 +0000 2017', 'id': 883482846933004288, 'id_str': '883482846933004288', 'full_text': 'This is Bella. She hopes her smile made you smile. If not, she is also offering you her favorite monkey. 13.5/10 https://t.co/qjrljjt948', 'truncated': False, 'display_text_range': [0, 112], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 883482838036860928, 'id_str': '883482838036860928', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg', 'url': 'https://t.co/qjrljjt948', 'display_url': 'pic.twitter.com/qjrljjt948', 'expanded_url': 'https://twitter.com/dog_rates/status/883482846933004288/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 570, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1006, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1341, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 883482838036860928, 'id_str': '883482838036860928', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg', 'url': 'https://t.co/qjrljjt948', 'display_url': 'pic.twitter.com/qjrljjt948', 'expanded_url': 'https://twitter.com/dog_rates/status/883482846933004288/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 570, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1006, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1341, 'h': 1600, 'resize': 'fit'}}}, {'id': 883482838028431363, 'id_str': '883482838028431363', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/DELC9dXWsAMHUEK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DELC9dXWsAMHUEK.jpg', 'url': 'https://t.co/qjrljjt948', 'display_url': 'pic.twitter.com/qjrljjt948', 'expanded_url': 'https://twitter.com/dog_rates/status/883482846933004288/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 1199, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1601, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 8217, 'favorite_count': 40017, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jul 07 16:22:55 +0000 2017', 'id': 883360690899218434, 'id_str': '883360690899218434', 'full_text': 'Meet Grizzwald. He may be the floofiest floofer I ever did see. Lost eyes saving a schoolbus from a volcano erpuption. 13/10 heroic as h*ck https://t.co/rf661IFEYP', 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 883360682745503744, 'id_str': '883360682745503744', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg', 'url': 'https://t.co/rf661IFEYP', 'display_url': 'pic.twitter.com/rf661IFEYP', 'expanded_url': 'https://twitter.com/dog_rates/status/883360690899218434/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1280, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 883360682745503744, 'id_str': '883360682745503744', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg', 'url': 'https://t.co/rf661IFEYP', 'display_url': 'pic.twitter.com/rf661IFEYP', 'expanded_url': 'https://twitter.com/dog_rates/status/883360690899218434/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1280, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3060, 'favorite_count': 19864, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jul 07 00:17:54 +0000 2017', 'id': 883117836046086144, 'id_str': '883117836046086144', 'full_text': "Please only send dogs. We don't rate mechanics, no matter how h*ckin good. Thank you... 13/10 would sneak a pat https://t.co/Se5fZ9wp5E", 'truncated': False, 'display_text_range': [0, 111], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 883117826525024257, 'id_str': '883117826525024257', 'indices': [112, 135], 'media_url': 'http://pbs.twimg.com/media/DEF2-_jW0AEAS94.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEF2-_jW0AEAS94.jpg', 'url': 'https://t.co/Se5fZ9wp5E', 'display_url': 'pic.twitter.com/Se5fZ9wp5E', 'expanded_url': 'https://twitter.com/dog_rates/status/883117836046086144/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 883117826525024257, 'id_str': '883117826525024257', 'indices': [112, 135], 'media_url': 'http://pbs.twimg.com/media/DEF2-_jW0AEAS94.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEF2-_jW0AEAS94.jpg', 'url': 'https://t.co/Se5fZ9wp5E', 'display_url': 'pic.twitter.com/Se5fZ9wp5E', 'expanded_url': 'https://twitter.com/dog_rates/status/883117836046086144/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 883117826516688896, 'id_str': '883117826516688896', 'indices': [112, 135], 'media_url': 'http://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg', 'url': 'https://t.co/Se5fZ9wp5E', 'display_url': 'pic.twitter.com/Se5fZ9wp5E', 'expanded_url': 'https://twitter.com/dog_rates/status/883117836046086144/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5510, 'favorite_count': 32364, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jul 06 15:58:11 +0000 2017', 'id': 882992080364220416, 'id_str': '882992080364220416', 'full_text': "This is Rusty. He wasn't ready for the first pic. Clearly puppared for the second. 13/10 confirmed great boy https://t.co/tyER0KpdXj", 'truncated': False, 'display_text_range': [0, 108], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 882992072327913472, 'id_str': '882992072327913472', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg', 'url': 'https://t.co/tyER0KpdXj', 'display_url': 'pic.twitter.com/tyER0KpdXj', 'expanded_url': 'https://twitter.com/dog_rates/status/882992080364220416/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 882992072327913472, 'id_str': '882992072327913472', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg', 'url': 'https://t.co/tyER0KpdXj', 'display_url': 'pic.twitter.com/tyER0KpdXj', 'expanded_url': 'https://twitter.com/dog_rates/status/882992080364220416/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 882992072332120065, 'id_str': '882992072332120065', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/DEEEnIrXkAEliy-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEEEnIrXkAEliy-.jpg', 'url': 'https://t.co/tyER0KpdXj', 'display_url': 'pic.twitter.com/tyER0KpdXj', 'expanded_url': 'https://twitter.com/dog_rates/status/882992080364220416/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 900, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3228, 'favorite_count': 20900, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jul 06 00:46:41 +0000 2017', 'id': 882762694511734784, 'id_str': '882762694511734784', 'full_text': "This is Gus. He's quite the cheeky pupper. Already perfected the disinterested wink. 12/10 would let steal my girl https://t.co/D43I96SlVu", 'truncated': False, 'display_text_range': [0, 114], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 882762686299353088, 'id_str': '882762686299353088', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg', 'url': 'https://t.co/D43I96SlVu', 'display_url': 'pic.twitter.com/D43I96SlVu', 'expanded_url': 'https://twitter.com/dog_rates/status/882762694511734784/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1009, 'h': 1299, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 528, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 932, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 882762686299353088, 'id_str': '882762686299353088', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg', 'url': 'https://t.co/D43I96SlVu', 'display_url': 'pic.twitter.com/D43I96SlVu', 'expanded_url': 'https://twitter.com/dog_rates/status/882762694511734784/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1009, 'h': 1299, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 528, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 932, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4072, 'favorite_count': 24678, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jul 05 15:48:34 +0000 2017', 'id': 882627270321602560, 'id_str': '882627270321602560', 'full_text': 'This is Stanley. He has his first swim lesson today. Doggle straps adjusted. Ready to go. 13/10 Phelps is nervous (IG: stanleythe_corgi) https://t.co/Nx52PGwH94', 'truncated': False, 'display_text_range': [0, 136], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 882627261886758912, 'id_str': '882627261886758912', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg', 'url': 'https://t.co/Nx52PGwH94', 'display_url': 'pic.twitter.com/Nx52PGwH94', 'expanded_url': 'https://twitter.com/dog_rates/status/882627270321602560/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 548, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 899, 'h': 1116, 'resize': 'fit'}, 'large': {'w': 899, 'h': 1116, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 882627261886758912, 'id_str': '882627261886758912', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg', 'url': 'https://t.co/Nx52PGwH94', 'display_url': 'pic.twitter.com/Nx52PGwH94', 'expanded_url': 'https://twitter.com/dog_rates/status/882627270321602560/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 548, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 899, 'h': 1116, 'resize': 'fit'}, 'large': {'w': 899, 'h': 1116, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5037, 'favorite_count': 24512, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jul 04 16:01:23 +0000 2017', 'id': 882268110199369728, 'id_str': '882268110199369728', 'full_text': "This is Alfy. You're witnessing his first watermelon experience. I think it was a success. 13/10 happy 4th Alfy 🇺🇸 https://t.co/fYP5RlutfA", 'truncated': False, 'display_text_range': [0, 114], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 882268100984492032, 'id_str': '882268100984492032', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg', 'url': 'https://t.co/fYP5RlutfA', 'display_url': 'pic.twitter.com/fYP5RlutfA', 'expanded_url': 'https://twitter.com/dog_rates/status/882268110199369728/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1200, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 882268100984492032, 'id_str': '882268100984492032', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg', 'url': 'https://t.co/fYP5RlutfA', 'display_url': 'pic.twitter.com/fYP5RlutfA', 'expanded_url': 'https://twitter.com/dog_rates/status/882268110199369728/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1200, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}, {'id': 882268100997115904, 'id_str': '882268100997115904', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/DD5yKdSXcAAb0-H.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DD5yKdSXcAAb0-H.jpg', 'url': 'https://t.co/fYP5RlutfA', 'display_url': 'pic.twitter.com/fYP5RlutfA', 'expanded_url': 'https://twitter.com/dog_rates/status/882268110199369728/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1200, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}, {'id': 882268101005500416, 'id_str': '882268101005500416', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/DD5yKdUXYAAMUzq.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DD5yKdUXYAAMUzq.jpg', 'url': 'https://t.co/fYP5RlutfA', 'display_url': 'pic.twitter.com/fYP5RlutfA', 'expanded_url': 'https://twitter.com/dog_rates/status/882268110199369728/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1200, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9578, 'favorite_count': 39011, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jul 04 01:18:17 +0000 2017', 'id': 882045870035918850, 'id_str': '882045870035918850', 'full_text': 'This is Koko. Her owner, inspired by Barney, recently built a cart for her to use during walks if she got tired. 13/10 rest easy Koko https://t.co/zeDpnsKX7w', 'truncated': False, 'display_text_range': [0, 133], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 882045864507736065, 'id_str': '882045864507736065', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg', 'url': 'https://t.co/zeDpnsKX7w', 'display_url': 'pic.twitter.com/zeDpnsKX7w', 'expanded_url': 'https://twitter.com/dog_rates/status/882045870035918850/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 749, 'h': 1017, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 749, 'h': 1017, 'resize': 'fit'}, 'small': {'w': 501, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 882045864507736065, 'id_str': '882045864507736065', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg', 'url': 'https://t.co/zeDpnsKX7w', 'display_url': 'pic.twitter.com/zeDpnsKX7w', 'expanded_url': 'https://twitter.com/dog_rates/status/882045870035918850/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 749, 'h': 1017, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 749, 'h': 1017, 'resize': 'fit'}, 'small': {'w': 501, 'h': 680, 'resize': 'fit'}}}, {'id': 882045864503652352, 'id_str': '882045864503652352', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/DD2oCl1XsAAoT6d.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DD2oCl1XsAAoT6d.jpg', 'url': 'https://t.co/zeDpnsKX7w', 'display_url': 'pic.twitter.com/zeDpnsKX7w', 'expanded_url': 'https://twitter.com/dog_rates/status/882045870035918850/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 640, 'h': 640, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 640, 'h': 640, 'resize': 'fit'}, 'medium': {'w': 640, 'h': 640, 'resize': 'fit'}}}, {'id': 882045864503586816, 'id_str': '882045864503586816', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/DD2oCl1WsAA6e3B.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DD2oCl1WsAA6e3B.jpg', 'url': 'https://t.co/zeDpnsKX7w', 'display_url': 'pic.twitter.com/zeDpnsKX7w', 'expanded_url': 'https://twitter.com/dog_rates/status/882045870035918850/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 548, 'h': 680, 'resize': 'fit'}, 'large': {'w': 749, 'h': 929, 'resize': 'fit'}, 'medium': {'w': 749, 'h': 929, 'resize': 'fit'}}}, {'id': 882045864499400705, 'id_str': '882045864499400705', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/DD2oCl0W0AEtpRg.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DD2oCl0W0AEtpRg.jpg', 'url': 'https://t.co/zeDpnsKX7w', 'display_url': 'pic.twitter.com/zeDpnsKX7w', 'expanded_url': 'https://twitter.com/dog_rates/status/882045870035918850/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 584, 'h': 637, 'resize': 'fit'}, 'small': {'w': 584, 'h': 637, 'resize': 'fit'}, 'medium': {'w': 584, 'h': 637, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4064, 'favorite_count': 25614, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jul 03 16:04:48 +0000 2017', 'id': 881906580714921986, 'id_str': '881906580714921986', 'full_text': "This is Rey. He's a Benebop Cumberfloof. 12/10 dangerously pettable https://t.co/503CgWbhxQ", 'truncated': False, 'display_text_range': [0, 67], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 881906570426281984, 'id_str': '881906570426281984', 'indices': [68, 91], 'media_url': 'http://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg', 'url': 'https://t.co/503CgWbhxQ', 'display_url': 'pic.twitter.com/503CgWbhxQ', 'expanded_url': 'https://twitter.com/dog_rates/status/881906580714921986/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 576, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 576, 'h': 1024, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 881906570426281984, 'id_str': '881906570426281984', 'indices': [68, 91], 'media_url': 'http://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg', 'url': 'https://t.co/503CgWbhxQ', 'display_url': 'pic.twitter.com/503CgWbhxQ', 'expanded_url': 'https://twitter.com/dog_rates/status/881906580714921986/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 576, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 576, 'h': 1024, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2837, 'favorite_count': 21363, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jul 03 00:11:11 +0000 2017', 'id': 881666595344535552, 'id_str': '881666595344535552', 'full_text': "This is Gary. He couldn't miss this puppertunity for a selfie. Flawless focusing skills. 13/10 would boop intensely https://t.co/7CSWCl8I6s", 'truncated': False, 'display_text_range': [0, 115], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 881666587375304705, 'id_str': '881666587375304705', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg', 'url': 'https://t.co/7CSWCl8I6s', 'display_url': 'pic.twitter.com/7CSWCl8I6s', 'expanded_url': 'https://twitter.com/dog_rates/status/881666595344535552/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 881666587375304705, 'id_str': '881666587375304705', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg', 'url': 'https://t.co/7CSWCl8I6s', 'display_url': 'pic.twitter.com/7CSWCl8I6s', 'expanded_url': 'https://twitter.com/dog_rates/status/881666595344535552/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 8906, 'favorite_count': 44352, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jul 02 21:58:53 +0000 2017', 'id': 881633300179243008, 'id_str': '881633300179243008', 'full_text': '@roushfenway These are good dogs but 17/10 is an emotional impulse rating. More like 13/10s', 'truncated': False, 'display_text_range': [13, 91], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'roushfenway', 'name': 'RoushFenwayKeselowski', 'id': 1394819764296486914, 'id_str': '1394819764296486914', 'indices': [0, 12]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 881607037314052101, 'in_reply_to_status_id_str': '881607037314052101', 'in_reply_to_user_id': 47384430, 'in_reply_to_user_id_str': '47384430', 'in_reply_to_screen_name': 'RFKracing', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 8, 'favorite_count': 113, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sun Jul 02 15:32:16 +0000 2017', 'id': 881536004380872706, 'id_str': '881536004380872706', 'full_text': 'Here is a pupper approaching maximum borkdrive. Zooming at never before seen speeds. 14/10 paw-inspiring af \n(IG: puffie_the_chow) https://t.co/ghXBIIeQZF', 'truncated': False, 'display_text_range': [0, 130], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 881535971568889856, 'id_str': '881535971568889856', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/881535971568889856/pu/img/9bawiZ--8FKywTkz.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/881535971568889856/pu/img/9bawiZ--8FKywTkz.jpg', 'url': 'https://t.co/ghXBIIeQZF', 'display_url': 'pic.twitter.com/ghXBIIeQZF', 'expanded_url': 'https://twitter.com/dog_rates/status/881536004380872706/video/1', 'type': 'photo', 'sizes': {'small': {'w': 480, 'h': 480, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 480, 'h': 480, 'resize': 'fit'}, 'large': {'w': 480, 'h': 480, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 881535971568889856, 'id_str': '881535971568889856', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/881535971568889856/pu/img/9bawiZ--8FKywTkz.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/881535971568889856/pu/img/9bawiZ--8FKywTkz.jpg', 'url': 'https://t.co/ghXBIIeQZF', 'display_url': 'pic.twitter.com/ghXBIIeQZF', 'expanded_url': 'https://twitter.com/dog_rates/status/881536004380872706/video/1', 'type': 'video', 'sizes': {'small': {'w': 480, 'h': 480, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 480, 'h': 480, 'resize': 'fit'}, 'large': {'w': 480, 'h': 480, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [1, 1], 'duration_millis': 13033, 'variants': [{'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/881535971568889856/pu/vid/240x240/_D_Ru1i40DJjZnLa.mp4'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/881535971568889856/pu/vid/480x480/eHoZev4usFv8pDFG.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/881535971568889856/pu/pl/x6e2xfkZo48Hm3u0.m3u8'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 13343, 'favorite_count': 43269, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jul 01 21:49:04 +0000 2017', 'id': 881268444196462592, 'id_str': '881268444196462592', 'full_text': "Meet Elliot. He's a Canadian Forrest Pup. Unusual number of antlers for a dog. Sneaky tongue slip to celebrate #Canada150. 12/10 would pet https://t.co/cgwJwowTMC", 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [{'text': 'Canada150', 'indices': [111, 121]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 881268439486169090, 'id_str': '881268439486169090', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg', 'url': 'https://t.co/cgwJwowTMC', 'display_url': 'pic.twitter.com/cgwJwowTMC', 'expanded_url': 'https://twitter.com/dog_rates/status/881268444196462592/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 612, 'resize': 'fit'}, 'small': {'w': 680, 'h': 462, 'resize': 'fit'}, 'large': {'w': 900, 'h': 612, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 881268439486169090, 'id_str': '881268439486169090', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg', 'url': 'https://t.co/cgwJwowTMC', 'display_url': 'pic.twitter.com/cgwJwowTMC', 'expanded_url': 'https://twitter.com/dog_rates/status/881268444196462592/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 612, 'resize': 'fit'}, 'small': {'w': 680, 'h': 462, 'resize': 'fit'}, 'large': {'w': 900, 'h': 612, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4478, 'favorite_count': 20419, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jun 30 23:47:07 +0000 2017', 'id': 880935762899988482, 'id_str': '880935762899988482', 'full_text': "This is Louis. He's crossing. It's a big deal. 13/10 h*ckin breathtaking https://t.co/D0wb1GlKAt", 'truncated': False, 'display_text_range': [0, 72], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 880935758152028161, 'id_str': '880935758152028161', 'indices': [73, 96], 'media_url': 'http://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg', 'url': 'https://t.co/D0wb1GlKAt', 'display_url': 'pic.twitter.com/D0wb1GlKAt', 'expanded_url': 'https://twitter.com/dog_rates/status/880935762899988482/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 353, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 540, 'h': 1041, 'resize': 'fit'}, 'medium': {'w': 540, 'h': 1041, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 880935758152028161, 'id_str': '880935758152028161', 'indices': [73, 96], 'media_url': 'http://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg', 'url': 'https://t.co/D0wb1GlKAt', 'display_url': 'pic.twitter.com/D0wb1GlKAt', 'expanded_url': 'https://twitter.com/dog_rates/status/880935762899988482/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 353, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 540, 'h': 1041, 'resize': 'fit'}, 'medium': {'w': 540, 'h': 1041, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2325, 'favorite_count': 14986, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jun 30 19:35:32 +0000 2017', 'id': 880872448815771648, 'id_str': '880872448815771648', 'full_text': "Ugh not again. We only rate dogs. Please don't send in well-dressed  floppy-tongued street penguins. Dogs only please. Thank you... 12/10 https://t.co/WiAMbTkDPf", 'truncated': False, 'display_text_range': [0, 137], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 880872431472267264, 'id_str': '880872431472267264', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg', 'url': 'https://t.co/WiAMbTkDPf', 'display_url': 'pic.twitter.com/WiAMbTkDPf', 'expanded_url': 'https://twitter.com/dog_rates/status/880872448815771648/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 880872431472267264, 'id_str': '880872431472267264', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg', 'url': 'https://t.co/WiAMbTkDPf', 'display_url': 'pic.twitter.com/WiAMbTkDPf', 'expanded_url': 'https://twitter.com/dog_rates/status/880872448815771648/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364484, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3191, 'favorite_count': 18637, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jun 29 16:39:47 +0000 2017', 'id': 880465832366813184, 'id_str': '880465832366813184', 'full_text': 'This is Bella. She had her first beach experience this morning. Complete success. 12/10 would perform a sandy boop https://t.co/4VsFysDmiw', 'truncated': False, 'display_text_range': [0, 114], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 880465790071427074, 'id_str': '880465790071427074', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg', 'url': 'https://t.co/4VsFysDmiw', 'display_url': 'pic.twitter.com/4VsFysDmiw', 'expanded_url': 'https://twitter.com/dog_rates/status/880465832366813184/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 880465790071427074, 'id_str': '880465790071427074', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg', 'url': 'https://t.co/4VsFysDmiw', 'display_url': 'pic.twitter.com/4VsFysDmiw', 'expanded_url': 'https://twitter.com/dog_rates/status/880465832366813184/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 880465789966585856, 'id_str': '880465789966585856', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/DDgK-JfXkAAgJiL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDgK-JfXkAAgJiL.jpg', 'url': 'https://t.co/4VsFysDmiw', 'display_url': 'pic.twitter.com/4VsFysDmiw', 'expanded_url': 'https://twitter.com/dog_rates/status/880465832366813184/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 901, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}, {'id': 880465789958201345, 'id_str': '880465789958201345', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/DDgK-JdXoAEd1IZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDgK-JdXoAEd1IZ.jpg', 'url': 'https://t.co/4VsFysDmiw', 'display_url': 'pic.twitter.com/4VsFysDmiw', 'expanded_url': 'https://twitter.com/dog_rates/status/880465832366813184/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 880465790071439362, 'id_str': '880465790071439362', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/DDgK-J4XgAIHrwX.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDgK-J4XgAIHrwX.jpg', 'url': 'https://t.co/4VsFysDmiw', 'display_url': 'pic.twitter.com/4VsFysDmiw', 'expanded_url': 'https://twitter.com/dog_rates/status/880465832366813184/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364485, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5190, 'favorite_count': 24913, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jun 29 00:27:25 +0000 2017', 'id': 880221127280381952, 'id_str': '880221127280381952', 'full_text': "Meet Jesse. He's a Fetty Woof. His tongue ejects without warning. A true bleptomaniac. 12/10 would snug well https://t.co/fUod0tVmvK", 'truncated': False, 'display_text_range': [0, 108], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 880221119067770882, 'id_str': '880221119067770882', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg', 'url': 'https://t.co/fUod0tVmvK', 'display_url': 'pic.twitter.com/fUod0tVmvK', 'expanded_url': 'https://twitter.com/dog_rates/status/880221127280381952/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 880221119067770882, 'id_str': '880221119067770882', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg', 'url': 'https://t.co/fUod0tVmvK', 'display_url': 'pic.twitter.com/fUod0tVmvK', 'expanded_url': 'https://twitter.com/dog_rates/status/880221127280381952/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}}, {'id': 880221119063539714, 'id_str': '880221119063539714', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/DDcscbWUQAICDUW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDcscbWUQAICDUW.jpg', 'url': 'https://t.co/fUod0tVmvK', 'display_url': 'pic.twitter.com/fUod0tVmvK', 'expanded_url': 'https://twitter.com/dog_rates/status/880221127280381952/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364485, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3444, 'favorite_count': 23565, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jun 28 16:09:20 +0000 2017', 'id': 880095782870896641, 'id_str': '880095782870896641', 'full_text': "Please don't send in photos without dogs in them. We're not @porch_rates. Insubordinate and churlish. Pretty good porch tho 11/10 https://t.co/HauE8M3Bu4", 'truncated': False, 'display_text_range': [0, 129], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'porch_rates', 'name': 'porches', 'id': 880096313915752450, 'id_str': '880096313915752450', 'indices': [60, 72]}], 'urls': [], 'media': [{'id': 880095777175076864, 'id_str': '880095777175076864', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg', 'url': 'https://t.co/HauE8M3Bu4', 'display_url': 'pic.twitter.com/HauE8M3Bu4', 'expanded_url': 'https://twitter.com/dog_rates/status/880095782870896641/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 472, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 833, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1110, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 880095777175076864, 'id_str': '880095777175076864', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg', 'url': 'https://t.co/HauE8M3Bu4', 'display_url': 'pic.twitter.com/HauE8M3Bu4', 'expanded_url': 'https://twitter.com/dog_rates/status/880095782870896641/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 472, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 833, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1110, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364485, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3634, 'favorite_count': 24222, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jun 28 00:42:13 +0000 2017', 'id': 879862464715927552, 'id_str': '879862464715927552', 'full_text': 'This is Romeo. He would like to do an entrance. Requesting your immediate assistance. 13/10 https://t.co/Qh5aEkRQm9', 'truncated': False, 'display_text_range': [0, 91], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 879862459263307776, 'id_str': '879862459263307776', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/media/DDXmPreXUAA3QGJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDXmPreXUAA3QGJ.jpg', 'url': 'https://t.co/Qh5aEkRQm9', 'display_url': 'pic.twitter.com/Qh5aEkRQm9', 'expanded_url': 'https://twitter.com/dog_rates/status/879862464715927552/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 879862459263307776, 'id_str': '879862459263307776', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/media/DDXmPreXUAA3QGJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDXmPreXUAA3QGJ.jpg', 'url': 'https://t.co/Qh5aEkRQm9', 'display_url': 'pic.twitter.com/Qh5aEkRQm9', 'expanded_url': 'https://twitter.com/dog_rates/status/879862464715927552/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}, {'id': 879862459317854210, 'id_str': '879862459317854210', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/media/DDXmPrrXoAI42eo.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDXmPrrXoAI42eo.jpg', 'url': 'https://t.co/Qh5aEkRQm9', 'display_url': 'pic.twitter.com/Qh5aEkRQm9', 'expanded_url': 'https://twitter.com/dog_rates/status/879862464715927552/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}, {'id': 879862459250638849, 'id_str': '879862459250638849', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg', 'url': 'https://t.co/Qh5aEkRQm9', 'display_url': 'pic.twitter.com/Qh5aEkRQm9', 'expanded_url': 'https://twitter.com/dog_rates/status/879862464715927552/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364485, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2912, 'favorite_count': 19628, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jun 27 12:14:36 +0000 2017', 'id': 879674319642796034, 'id_str': '879674319642796034', 'full_text': '@RealKentMurphy 14/10 confirmed', 'truncated': False, 'display_text_range': [16, 31], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'RealKentMurphy', 'name': 'Kent', 'id': 3105440746, 'id_str': '3105440746', 'indices': [0, 15]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 879553827334172678, 'in_reply_to_status_id_str': '879553827334172678', 'in_reply_to_user_id': 3105440746, 'in_reply_to_user_id_str': '3105440746', 'in_reply_to_screen_name': 'RealKentMurphy', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364485, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9, 'favorite_count': 281, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Tue Jun 27 00:10:17 +0000 2017', 'id': 879492040517615616, 'id_str': '879492040517615616', 'full_text': 'This is Bailey. He thinks you should measure ear length for signs of growth instead. 12/10 https://t.co/IxM9IMKQq8', 'truncated': False, 'display_text_range': [0, 90], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 879492035853660161, 'id_str': '879492035853660161', 'indices': [91, 114], 'media_url': 'http://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg', 'url': 'https://t.co/IxM9IMKQq8', 'display_url': 'pic.twitter.com/IxM9IMKQq8', 'expanded_url': 'https://twitter.com/dog_rates/status/879492040517615616/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 959, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1279, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 879492035853660161, 'id_str': '879492035853660161', 'indices': [91, 114], 'media_url': 'http://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg', 'url': 'https://t.co/IxM9IMKQq8', 'display_url': 'pic.twitter.com/IxM9IMKQq8', 'expanded_url': 'https://twitter.com/dog_rates/status/879492040517615616/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 959, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1279, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364485, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2617, 'favorite_count': 20631, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jun 26 19:07:24 +0000 2017', 'id': 879415818425184262, 'id_str': '879415818425184262', 'full_text': 'This is Duddles. He did an attempt. 13/10 someone help him (vid by Georgia Felici) https://t.co/UDT7ZkcTgY', 'truncated': False, 'display_text_range': [0, 82], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 879415784908390401, 'id_str': '879415784908390401', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/879415784908390401/pu/img/cX7XI1TnUsseGET5.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/879415784908390401/pu/img/cX7XI1TnUsseGET5.jpg', 'url': 'https://t.co/UDT7ZkcTgY', 'display_url': 'pic.twitter.com/UDT7ZkcTgY', 'expanded_url': 'https://twitter.com/dog_rates/status/879415818425184262/video/1', 'type': 'photo', 'sizes': {'medium': {'w': 718, 'h': 404, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 718, 'h': 404, 'resize': 'fit'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 879415784908390401, 'id_str': '879415784908390401', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/879415784908390401/pu/img/cX7XI1TnUsseGET5.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/879415784908390401/pu/img/cX7XI1TnUsseGET5.jpg', 'url': 'https://t.co/UDT7ZkcTgY', 'display_url': 'pic.twitter.com/UDT7ZkcTgY', 'expanded_url': 'https://twitter.com/dog_rates/status/879415818425184262/video/1', 'type': 'video', 'sizes': {'medium': {'w': 718, 'h': 404, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 718, 'h': 404, 'resize': 'fit'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [359, 202], 'duration_millis': 6375, 'variants': [{'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/879415784908390401/pu/vid/318x180/HiOuK7PX8Clzp9V6.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/879415784908390401/pu/pl/BPRZU-j_oy3s3yjc.m3u8'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/879415784908390401/pu/vid/638x360/-FhdelrCgXVtun1S.mp4'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364485, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 37241, 'favorite_count': 92443, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jun 26 16:31:08 +0000 2017', 'id': 879376492567855104, 'id_str': '879376492567855104', 'full_text': "This is Jack AKA Stephen Furry. You're not scoring on him. Unless he slips down the slide. 12/10 would happily get blocked by https://t.co/0gOi601EAa", 'truncated': False, 'display_text_range': [0, 125], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 879376482266632192, 'id_str': '879376482266632192', 'indices': [126, 149], 'media_url': 'http://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg', 'url': 'https://t.co/0gOi601EAa', 'display_url': 'pic.twitter.com/0gOi601EAa', 'expanded_url': 'https://twitter.com/dog_rates/status/879376492567855104/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 1112, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1600, 'h': 1482, 'resize': 'fit'}, 'small': {'w': 680, 'h': 630, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 879376482266632192, 'id_str': '879376482266632192', 'indices': [126, 149], 'media_url': 'http://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg', 'url': 'https://t.co/0gOi601EAa', 'display_url': 'pic.twitter.com/0gOi601EAa', 'expanded_url': 'https://twitter.com/dog_rates/status/879376492567855104/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 1112, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1600, 'h': 1482, 'resize': 'fit'}, 'small': {'w': 680, 'h': 630, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364485, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2634, 'favorite_count': 14797, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jun 26 00:13:58 +0000 2017', 'id': 879130579576475649, 'id_str': '879130579576475649', 'full_text': 'RT @dog_rates: This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364485, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Fri Jun 23 01:10:23 +0000 2017', 'id': 878057613040115712, 'id_str': '878057613040115712', 'full_text': 'This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://t.co/cwtWnHMVpe', 'truncated': False, 'display_text_range': [0, 115], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 878057599261745152, 'id_str': '878057599261745152', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/DC98vABUIAA97pz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg', 'url': 'https://t.co/cwtWnHMVpe', 'display_url': 'pic.twitter.com/cwtWnHMVpe', 'expanded_url': 'https://twitter.com/dog_rates/status/878057613040115712/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 474, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 837, 'resize': 'fit'}, 'large': {'w': 1599, 'h': 1115, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 878057599261745152, 'id_str': '878057599261745152', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/DC98vABUIAA97pz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg', 'url': 'https://t.co/cwtWnHMVpe', 'display_url': 'pic.twitter.com/cwtWnHMVpe', 'expanded_url': 'https://twitter.com/dog_rates/status/878057613040115712/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 474, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 837, 'resize': 'fit'}, 'large': {'w': 1599, 'h': 1115, 'resize': 'fit'}}}, {'id': 878057599287009280, 'id_str': '878057599287009280', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/DC98vAHVoAAUj8d.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DC98vAHVoAAUj8d.jpg', 'url': 'https://t.co/cwtWnHMVpe', 'display_url': 'pic.twitter.com/cwtWnHMVpe', 'expanded_url': 'https://twitter.com/dog_rates/status/878057613040115712/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1200, 'h': 1466, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 557, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 982, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364485, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5707, 'favorite_count': 37003, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 5707, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sun Jun 25 18:56:45 +0000 2017', 'id': 879050749262655488, 'id_str': '879050749262655488', 'full_text': 'This is Steven. He has trouble relating to other dogs. Quite shy. Neck longer than average. Tropical probably. 11/10 would still pet https://t.co/2mJCDEJWdD', 'truncated': False, 'display_text_range': [0, 132], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 879050744279834628, 'id_str': '879050744279834628', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg', 'url': 'https://t.co/2mJCDEJWdD', 'display_url': 'pic.twitter.com/2mJCDEJWdD', 'expanded_url': 'https://twitter.com/dog_rates/status/879050749262655488/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 899, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 674, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 879050744279834628, 'id_str': '879050744279834628', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg', 'url': 'https://t.co/2mJCDEJWdD', 'display_url': 'pic.twitter.com/2mJCDEJWdD', 'expanded_url': 'https://twitter.com/dog_rates/status/879050749262655488/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 899, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 674, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364485, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3933, 'favorite_count': 19733, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jun 25 16:07:47 +0000 2017', 'id': 879008229531029506, 'id_str': '879008229531029506', 'full_text': "This is Beau. That is Beau's balloon. He takes it everywhere. 13/10 would protect at all costs https://t.co/YDtpCjIPKN", 'truncated': False, 'display_text_range': [0, 94], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 879008224678207491, 'id_str': '879008224678207491', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg', 'url': 'https://t.co/YDtpCjIPKN', 'display_url': 'pic.twitter.com/YDtpCjIPKN', 'expanded_url': 'https://twitter.com/dog_rates/status/879008229531029506/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 899, 'h': 1155, 'resize': 'fit'}, 'small': {'w': 529, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 899, 'h': 1155, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 879008224678207491, 'id_str': '879008224678207491', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg', 'url': 'https://t.co/YDtpCjIPKN', 'display_url': 'pic.twitter.com/YDtpCjIPKN', 'expanded_url': 'https://twitter.com/dog_rates/status/879008229531029506/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 899, 'h': 1155, 'resize': 'fit'}, 'small': {'w': 529, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 899, 'h': 1155, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364485, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2230, 'favorite_count': 16714, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jun 25 00:45:22 +0000 2017', 'id': 878776093423087618, 'id_str': '878776093423087618', 'full_text': "This is Snoopy. He's a proud #PrideMonthPuppo. Impeccable handwriting for not having thumbs. 13/10 would love back #PrideMonth https://t.co/lNZwgNO4gS", 'truncated': False, 'display_text_range': [0, 126], 'entities': {'hashtags': [{'text': 'PrideMonthPuppo', 'indices': [29, 45]}, {'text': 'PrideMonth', 'indices': [115, 126]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 878776084946448384, 'id_str': '878776084946448384', 'indices': [127, 150], 'media_url': 'http://pbs.twimg.com/media/DDIKMXxXcAAbmdp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDIKMXxXcAAbmdp.jpg', 'url': 'https://t.co/lNZwgNO4gS', 'display_url': 'pic.twitter.com/lNZwgNO4gS', 'expanded_url': 'https://twitter.com/dog_rates/status/878776093423087618/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 878776084946448384, 'id_str': '878776084946448384', 'indices': [127, 150], 'media_url': 'http://pbs.twimg.com/media/DDIKMXxXcAAbmdp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDIKMXxXcAAbmdp.jpg', 'url': 'https://t.co/lNZwgNO4gS', 'display_url': 'pic.twitter.com/lNZwgNO4gS', 'expanded_url': 'https://twitter.com/dog_rates/status/878776093423087618/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 878776084954796033, 'id_str': '878776084954796033', 'indices': [127, 150], 'media_url': 'http://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg', 'url': 'https://t.co/lNZwgNO4gS', 'display_url': 'pic.twitter.com/lNZwgNO4gS', 'expanded_url': 'https://twitter.com/dog_rates/status/878776093423087618/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364485, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3416, 'favorite_count': 17077, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jun 24 13:24:20 +0000 2017', 'id': 878604707211726852, 'id_str': '878604707211726852', 'full_text': 'Martha is stunning how h*ckin dare you. 13/10 https://t.co/9uABQXgjwa', 'truncated': False, 'display_text_range': [0, 45], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/9uABQXgjwa', 'expanded_url': 'https://twitter.com/bbcworld/status/878599868507402241', 'display_url': 'twitter.com/bbcworld/statu…', 'indices': [46, 69]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364485, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'quoted_status_id': 878599868507402241, 'quoted_status_id_str': '878599868507402241', 'quoted_status_permalink': {'url': 'https://t.co/9uABQXgjwa', 'expanded': 'https://twitter.com/bbcworld/status/878599868507402241', 'display': 'twitter.com/bbcworld/statu…'}, 'quoted_status': {'created_at': 'Sat Jun 24 13:05:06 +0000 2017', 'id': 878599868507402241, 'id_str': '878599868507402241', 'full_text': "World's ugliest dog, Martha, crowned in California https://t.co/1D2w9IbrSF", 'truncated': False, 'display_text_range': [0, 74], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/1D2w9IbrSF', 'expanded_url': 'http://bbc.in/2t5O72a', 'display_url': 'bbc.in/2t5O72a', 'indices': [51, 74]}]}, 'source': '<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 742143, 'id_str': '742143', 'name': 'BBC News (World)', 'screen_name': 'BBCWorld', 'location': 'London, UK', 'description': "News, features and analysis from the World's newsroom. Breaking news, follow @BBCBreaking. UK news, @BBCNews. Latest sports news @BBCSport", 'url': 'https://t.co/4zUWrLAYqP', 'entities': {'url': {'urls': [{'url': 'https://t.co/4zUWrLAYqP', 'expanded_url': 'http://www.bbc.com/news', 'display_url': 'bbc.com/news', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 38223261, 'friends_count': 18, 'listed_count': 133064, 'created_at': 'Thu Feb 01 07:44:29 +0000 2007', 'favourites_count': 1, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 351307, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': True, 'profile_background_color': 'FFFFFF', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1529107170448523264/q3VwEx38_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1529107170448523264/q3VwEx38_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/742143/1662659220', 'profile_link_color': '1F527B', 'profile_sidebar_border_color': 'FFFFFF', 'profile_sidebar_fill_color': 'FFFFFF', 'profile_text_color': '5A5A5A', 'profile_use_background_image': True, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 135, 'favorite_count': 682, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'retweet_count': 5894, 'favorite_count': 26342, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jun 24 00:09:53 +0000 2017', 'id': 878404777348136964, 'id_str': '878404777348136964', 'full_text': 'RT @dog_rates: Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps:/…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Fri Jun 23 16:00:04 +0000 2017', 'id': 878281511006478336, 'id_str': '878281511006478336', 'full_text': 'Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps://t.co/245xJJElsY https://t.co/lUiQH219v6', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/245xJJElsY', 'expanded_url': 'https://www.gofundme.com/3yd6y1c', 'display_url': 'gofundme.com/3yd6y1c', 'indices': [117, 140]}], 'media': [{'id': 878281503754510336, 'id_str': '878281503754510336', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg', 'url': 'https://t.co/lUiQH219v6', 'display_url': 'pic.twitter.com/lUiQH219v6', 'expanded_url': 'https://twitter.com/dog_rates/status/878281511006478336/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 455, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 750, 'h': 502, 'resize': 'fit'}, 'large': {'w': 750, 'h': 502, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 878281503754510336, 'id_str': '878281503754510336', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg', 'url': 'https://t.co/lUiQH219v6', 'display_url': 'pic.twitter.com/lUiQH219v6', 'expanded_url': 'https://twitter.com/dog_rates/status/878281511006478336/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 455, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 750, 'h': 502, 'resize': 'fit'}, 'large': {'w': 750, 'h': 502, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1070, 'favorite_count': 6754, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 1070, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Fri Jun 23 18:17:33 +0000 2017', 'id': 878316110768087041, 'id_str': '878316110768087041', 'full_text': "RT @dog_rates: Meet Terrance. He's being yelled at because he stapled the wrong stuff together. 11/10 hang in there Terrance https://t.co/i…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Tue Nov 24 03:51:38 +0000 2015', 'id': 669000397445533696, 'id_str': '669000397445533696', 'full_text': "Meet Terrance. He's being yelled at because he stapled the wrong stuff together. 11/10 hang in there Terrance https://t.co/ixcuUYCbdD", 'truncated': False, 'display_text_range': [0, 133], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 669000387991502850, 'id_str': '669000387991502850', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg', 'url': 'https://t.co/ixcuUYCbdD', 'display_url': 'pic.twitter.com/ixcuUYCbdD', 'expanded_url': 'https://twitter.com/dog_rates/status/669000397445533696/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 756, 'h': 961, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 756, 'h': 961, 'resize': 'fit'}, 'small': {'w': 535, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 669000387991502850, 'id_str': '669000387991502850', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg', 'url': 'https://t.co/ixcuUYCbdD', 'display_url': 'pic.twitter.com/ixcuUYCbdD', 'expanded_url': 'https://twitter.com/dog_rates/status/669000397445533696/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 756, 'h': 961, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 756, 'h': 961, 'resize': 'fit'}, 'small': {'w': 535, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5498, 'favorite_count': 18625, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 5498, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Fri Jun 23 16:00:04 +0000 2017', 'id': 878281511006478336, 'id_str': '878281511006478336', 'full_text': 'Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps://t.co/245xJJElsY https://t.co/lUiQH219v6', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/245xJJElsY', 'expanded_url': 'https://www.gofundme.com/3yd6y1c', 'display_url': 'gofundme.com/3yd6y1c', 'indices': [117, 140]}], 'media': [{'id': 878281503754510336, 'id_str': '878281503754510336', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg', 'url': 'https://t.co/lUiQH219v6', 'display_url': 'pic.twitter.com/lUiQH219v6', 'expanded_url': 'https://twitter.com/dog_rates/status/878281511006478336/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 455, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 750, 'h': 502, 'resize': 'fit'}, 'large': {'w': 750, 'h': 502, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 878281503754510336, 'id_str': '878281503754510336', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg', 'url': 'https://t.co/lUiQH219v6', 'display_url': 'pic.twitter.com/lUiQH219v6', 'expanded_url': 'https://twitter.com/dog_rates/status/878281511006478336/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 455, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 750, 'h': 502, 'resize': 'fit'}, 'large': {'w': 750, 'h': 502, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1070, 'favorite_count': 6754, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jun 23 01:10:23 +0000 2017', 'id': 878057613040115712, 'id_str': '878057613040115712', 'full_text': 'This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://t.co/cwtWnHMVpe', 'truncated': False, 'display_text_range': [0, 115], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 878057599261745152, 'id_str': '878057599261745152', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/DC98vABUIAA97pz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg', 'url': 'https://t.co/cwtWnHMVpe', 'display_url': 'pic.twitter.com/cwtWnHMVpe', 'expanded_url': 'https://twitter.com/dog_rates/status/878057613040115712/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 474, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 837, 'resize': 'fit'}, 'large': {'w': 1599, 'h': 1115, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 878057599261745152, 'id_str': '878057599261745152', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/DC98vABUIAA97pz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg', 'url': 'https://t.co/cwtWnHMVpe', 'display_url': 'pic.twitter.com/cwtWnHMVpe', 'expanded_url': 'https://twitter.com/dog_rates/status/878057613040115712/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 474, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 837, 'resize': 'fit'}, 'large': {'w': 1599, 'h': 1115, 'resize': 'fit'}}}, {'id': 878057599287009280, 'id_str': '878057599287009280', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/DC98vAHVoAAUj8d.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DC98vAHVoAAUj8d.jpg', 'url': 'https://t.co/cwtWnHMVpe', 'display_url': 'pic.twitter.com/cwtWnHMVpe', 'expanded_url': 'https://twitter.com/dog_rates/status/878057613040115712/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1200, 'h': 1466, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 557, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 982, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5707, 'favorite_count': 37003, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jun 22 03:54:17 +0000 2017', 'id': 877736472329191424, 'id_str': '877736472329191424', 'full_text': "This is Aja. She was just told she's a good dog. Suspicions confirmed. 13/10 would tell again https://t.co/lsPyyAiF1r", 'truncated': False, 'display_text_range': [0, 93], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 877736466763448320, 'id_str': '877736466763448320', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/DC5YqoPXgAA7Uph.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DC5YqoPXgAA7Uph.jpg', 'url': 'https://t.co/lsPyyAiF1r', 'display_url': 'pic.twitter.com/lsPyyAiF1r', 'expanded_url': 'https://twitter.com/dog_rates/status/877736472329191424/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1481, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 1111, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 629, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 877736466763448320, 'id_str': '877736466763448320', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/DC5YqoPXgAA7Uph.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DC5YqoPXgAA7Uph.jpg', 'url': 'https://t.co/lsPyyAiF1r', 'display_url': 'pic.twitter.com/lsPyyAiF1r', 'expanded_url': 'https://twitter.com/dog_rates/status/877736472329191424/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1481, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 1111, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 629, 'h': 680, 'resize': 'fit'}}}, {'id': 877736466767597568, 'id_str': '877736466767597568', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg', 'url': 'https://t.co/lsPyyAiF1r', 'display_url': 'pic.twitter.com/lsPyyAiF1r', 'expanded_url': 'https://twitter.com/dog_rates/status/877736472329191424/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 626, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1472, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 1104, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 15726, 'favorite_count': 68999, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jun 21 19:36:23 +0000 2017', 'id': 877611172832227328, 'id_str': '877611172832227328', 'full_text': 'RT @rachel2195: @dog_rates the boyfriend and his soaking wet pupper h*cking love his new hat 14/10 https://t.co/dJx4Gzc50G', 'truncated': False, 'display_text_range': [0, 122], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'rachel2195', 'name': 'Rachel Baker', 'id': 512804507, 'id_str': '512804507', 'indices': [3, 14]}, {'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [16, 26]}], 'urls': [], 'media': [{'id': 876850756556607488, 'id_str': '876850756556607488', 'indices': [99, 122], 'media_url': 'http://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg', 'url': 'https://t.co/dJx4Gzc50G', 'display_url': 'pic.twitter.com/dJx4Gzc50G', 'expanded_url': 'https://twitter.com/rachel2195/status/876850772322988033/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 876850772322988033, 'source_status_id_str': '876850772322988033', 'source_user_id': 512804507, 'source_user_id_str': '512804507'}]}, 'extended_entities': {'media': [{'id': 876850756556607488, 'id_str': '876850756556607488', 'indices': [99, 122], 'media_url': 'http://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg', 'url': 'https://t.co/dJx4Gzc50G', 'display_url': 'pic.twitter.com/dJx4Gzc50G', 'expanded_url': 'https://twitter.com/rachel2195/status/876850772322988033/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 876850772322988033, 'source_status_id_str': '876850772322988033', 'source_user_id': 512804507, 'source_user_id_str': '512804507'}, {'id': 876850756573417477, 'id_str': '876850756573417477', 'indices': [99, 122], 'media_url': 'http://pbs.twimg.com/media/DCszHgqXUAUtqmk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCszHgqXUAUtqmk.jpg', 'url': 'https://t.co/dJx4Gzc50G', 'display_url': 'pic.twitter.com/dJx4Gzc50G', 'expanded_url': 'https://twitter.com/rachel2195/status/876850772322988033/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 876850772322988033, 'source_status_id_str': '876850772322988033', 'source_user_id': 512804507, 'source_user_id_str': '512804507'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Mon Jun 19 17:14:49 +0000 2017', 'id': 876850772322988033, 'id_str': '876850772322988033', 'full_text': '@dog_rates the boyfriend and his soaking wet pupper h*cking love his new hat 14/10 https://t.co/dJx4Gzc50G', 'truncated': False, 'display_text_range': [0, 82], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [0, 10]}], 'urls': [], 'media': [{'id': 876850756556607488, 'id_str': '876850756556607488', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg', 'url': 'https://t.co/dJx4Gzc50G', 'display_url': 'pic.twitter.com/dJx4Gzc50G', 'expanded_url': 'https://twitter.com/rachel2195/status/876850772322988033/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 876850756556607488, 'id_str': '876850756556607488', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg', 'url': 'https://t.co/dJx4Gzc50G', 'display_url': 'pic.twitter.com/dJx4Gzc50G', 'expanded_url': 'https://twitter.com/rachel2195/status/876850772322988033/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 876850756573417477, 'id_str': '876850756573417477', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/media/DCszHgqXUAUtqmk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCszHgqXUAUtqmk.jpg', 'url': 'https://t.co/dJx4Gzc50G', 'display_url': 'pic.twitter.com/dJx4Gzc50G', 'expanded_url': 'https://twitter.com/rachel2195/status/876850772322988033/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': 4196983835, 'in_reply_to_user_id_str': '4196983835', 'in_reply_to_screen_name': 'dog_rates', 'user': {'id': 512804507, 'id_str': '512804507', 'name': 'Rachel Baker', 'screen_name': 'rachel2195', 'location': 'Gainesville, FL', 'description': '4th year medical student, University of Florida ‘23, Calvin University ‘17, she/her 🇧🇮', 'url': None, 'entities': {'description': {'urls': []}}, 'protected': False, 'followers_count': 154, 'friends_count': 281, 'listed_count': 2, 'created_at': 'Sat Mar 03 05:07:48 +0000 2012', 'favourites_count': 2784, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': False, 'statuses_count': 1541, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': 'C0DEED', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1113970090473656321/_76Uanj7_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1113970090473656321/_76Uanj7_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/512804507/1398099469', 'profile_link_color': '1DA1F2', 'profile_sidebar_border_color': 'C0DEED', 'profile_sidebar_fill_color': 'DDEEF6', 'profile_text_color': '333333', 'profile_use_background_image': True, 'has_extended_profile': True, 'default_profile': True, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 70, 'favorite_count': 1610, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 70, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jun 21 15:58:08 +0000 2017', 'id': 877556246731214848, 'id_str': '877556246731214848', 'full_text': "This is Penny. She's both pupset and fired pup. Not pleased w your barbaric attempts at cleanliness. 12/10 would enjoy more shampoo options https://t.co/OYdDlfOGXP", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 877556240326512640, 'id_str': '877556240326512640', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg', 'url': 'https://t.co/OYdDlfOGXP', 'display_url': 'pic.twitter.com/OYdDlfOGXP', 'expanded_url': 'https://twitter.com/dog_rates/status/877556246731214848/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 674, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1586, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1190, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 877556240326512640, 'id_str': '877556240326512640', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg', 'url': 'https://t.co/OYdDlfOGXP', 'display_url': 'pic.twitter.com/OYdDlfOGXP', 'expanded_url': 'https://twitter.com/dog_rates/status/877556246731214848/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 674, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1586, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1190, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3148, 'favorite_count': 19823, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jun 21 00:06:44 +0000 2017', 'id': 877316821321428993, 'id_str': '877316821321428993', 'full_text': "Meet Dante. At first he wasn't a fan of his new raincoat, then he saw his reflection. H*ckin handsome. 13/10 for water resistant good boy https://t.co/SHRTIo5pxc", 'truncated': False, 'display_text_range': [0, 137], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 877316816103772164, 'id_str': '877316816103772164', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg', 'url': 'https://t.co/SHRTIo5pxc', 'display_url': 'pic.twitter.com/SHRTIo5pxc', 'expanded_url': 'https://twitter.com/dog_rates/status/877316821321428993/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 877316816103772164, 'id_str': '877316816103772164', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg', 'url': 'https://t.co/SHRTIo5pxc', 'display_url': 'pic.twitter.com/SHRTIo5pxc', 'expanded_url': 'https://twitter.com/dog_rates/status/877316821321428993/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 877316816095379458, 'id_str': '877316816095379458', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/DCza_vrXgAIGJqy.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCza_vrXgAIGJqy.jpg', 'url': 'https://t.co/SHRTIo5pxc', 'display_url': 'pic.twitter.com/SHRTIo5pxc', 'expanded_url': 'https://twitter.com/dog_rates/status/877316821321428993/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4319, 'favorite_count': 24054, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jun 20 16:29:50 +0000 2017', 'id': 877201837425926144, 'id_str': '877201837425926144', 'full_text': "This is Nelly. He graduated with his dogtorate today. Wants to know if you're proud of him. 12/10 would give congratulatory boop https://t.co/4g4cfj3P4Y", 'truncated': False, 'display_text_range': [0, 128], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 877201827330174976, 'id_str': '877201827330174976', 'indices': [129, 152], 'media_url': 'http://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg', 'url': 'https://t.co/4g4cfj3P4Y', 'display_url': 'pic.twitter.com/4g4cfj3P4Y', 'expanded_url': 'https://twitter.com/dog_rates/status/877201837425926144/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 877201827330174976, 'id_str': '877201827330174976', 'indices': [129, 152], 'media_url': 'http://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg', 'url': 'https://t.co/4g4cfj3P4Y', 'display_url': 'pic.twitter.com/4g4cfj3P4Y', 'expanded_url': 'https://twitter.com/dog_rates/status/877201837425926144/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 877201827330240513, 'id_str': '877201827330240513', 'indices': [129, 152], 'media_url': 'http://pbs.twimg.com/media/DCxyahJXsAEnDum.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCxyahJXsAEnDum.jpg', 'url': 'https://t.co/4g4cfj3P4Y', 'display_url': 'pic.twitter.com/4g4cfj3P4Y', 'expanded_url': 'https://twitter.com/dog_rates/status/877201837425926144/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4600, 'favorite_count': 23780, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jun 19 16:24:33 +0000 2017', 'id': 876838120628539392, 'id_str': '876838120628539392', 'full_text': "This is Ginger. She's having a ruff Monday. Too many pupper things going on. H*ckin exhausting. 12/10 would snug passionately https://t.co/j211oCDRs6", 'truncated': False, 'display_text_range': [0, 125], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 876838110318936065, 'id_str': '876838110318936065', 'indices': [126, 149], 'media_url': 'http://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg', 'url': 'https://t.co/j211oCDRs6', 'display_url': 'pic.twitter.com/j211oCDRs6', 'expanded_url': 'https://twitter.com/dog_rates/status/876838120628539392/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 876838110318936065, 'id_str': '876838110318936065', 'indices': [126, 149], 'media_url': 'http://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg', 'url': 'https://t.co/j211oCDRs6', 'display_url': 'pic.twitter.com/j211oCDRs6', 'expanded_url': 'https://twitter.com/dog_rates/status/876838120628539392/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}, {'id': 876838110323027969, 'id_str': '876838110323027969', 'indices': [126, 149], 'media_url': 'http://pbs.twimg.com/media/DCsnnZtUMAEoZNp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCsnnZtUMAEoZNp.jpg', 'url': 'https://t.co/j211oCDRs6', 'display_url': 'pic.twitter.com/j211oCDRs6', 'expanded_url': 'https://twitter.com/dog_rates/status/876838120628539392/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2793, 'favorite_count': 18158, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jun 18 20:30:39 +0000 2017', 'id': 876537666061221889, 'id_str': '876537666061221889', 'full_text': 'I can say with the pupmost confidence that the doggos who assisted with this search are heroic as h*ck. 14/10 for all https://t.co/8yoc1CNTsu', 'truncated': False, 'display_text_range': [0, 117], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/8yoc1CNTsu', 'expanded_url': 'https://twitter.com/mpstowerham/status/876162994446753793', 'display_url': 'twitter.com/mpstowerham/st…', 'indices': [118, 141]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'quoted_status_id': 876162994446753793, 'quoted_status_id_str': '876162994446753793', 'quoted_status_permalink': {'url': 'https://t.co/8yoc1CNTsu', 'expanded': 'https://twitter.com/mpstowerham/status/876162994446753793', 'display': 'twitter.com/mpstowerham/st…'}, 'quoted_status': {'created_at': 'Sat Jun 17 19:41:50 +0000 2017', 'id': 876162994446753793, 'id_str': '876162994446753793', 'full_text': 'These are the amazing dogs who searched the #GrenfellTower with their fire protective boots on. 👏👏👏 https://t.co/QsWmE380Z2', 'truncated': False, 'display_text_range': [0, 99], 'entities': {'hashtags': [{'text': 'GrenfellTower', 'indices': [44, 58]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 876162987706417152, 'id_str': '876162987706417152', 'indices': [100, 123], 'media_url': 'http://pbs.twimg.com/media/DCjBmF-WAAAjvxb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCjBmF-WAAAjvxb.jpg', 'url': 'https://t.co/QsWmE380Z2', 'display_url': 'pic.twitter.com/QsWmE380Z2', 'expanded_url': 'https://twitter.com/MPSTowerHam/status/876162994446753793/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 640, 'h': 1136, 'resize': 'fit'}, 'medium': {'w': 640, 'h': 1136, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 876162987706417152, 'id_str': '876162987706417152', 'indices': [100, 123], 'media_url': 'http://pbs.twimg.com/media/DCjBmF-WAAAjvxb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCjBmF-WAAAjvxb.jpg', 'url': 'https://t.co/QsWmE380Z2', 'display_url': 'pic.twitter.com/QsWmE380Z2', 'expanded_url': 'https://twitter.com/MPSTowerHam/status/876162994446753793/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 640, 'h': 1136, 'resize': 'fit'}, 'medium': {'w': 640, 'h': 1136, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 507967020, 'id_str': '507967020', 'name': 'Tower Hamlets Police', 'screen_name': 'MPSTowerHam', 'location': 'Tower Hamlets', 'description': "Updates from Tower Hamlets Police. This account isn't always monitored. In an emergency call 999 otherwise it's 101 or tweet @metcc (both 24/7)", 'url': 'https://t.co/9optTcihMF', 'entities': {'url': {'urls': [{'url': 'https://t.co/9optTcihMF', 'expanded_url': 'https://www.met.police.uk/', 'display_url': 'met.police.uk', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 27573, 'friends_count': 701, 'listed_count': 0, 'created_at': 'Tue Feb 28 21:46:01 +0000 2012', 'favourites_count': 4899, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 14456, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000099', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1567935743506485249/-evKv_An_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1567935743506485249/-evKv_An_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/507967020/1662707962', 'profile_link_color': '000099', 'profile_sidebar_border_color': 'FFFFFF', 'profile_sidebar_fill_color': 'DDEEF6', 'profile_text_color': '333333', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9120, 'favorite_count': 23938, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'retweet_count': 3961, 'favorite_count': 20986, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jun 18 16:57:37 +0000 2017', 'id': 876484053909872640, 'id_str': '876484053909872640', 'full_text': 'This is Benedict. He wants to thank you for this delightful urban walk. Hopes you know he loves you. 13/10 super duper good boy https://t.co/26BXueUgbs', 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 876484043352588288, 'id_str': '876484043352588288', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg', 'url': 'https://t.co/26BXueUgbs', 'display_url': 'pic.twitter.com/26BXueUgbs', 'expanded_url': 'https://twitter.com/dog_rates/status/876484053909872640/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 876484043352588288, 'id_str': '876484043352588288', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg', 'url': 'https://t.co/26BXueUgbs', 'display_url': 'pic.twitter.com/26BXueUgbs', 'expanded_url': 'https://twitter.com/dog_rates/status/876484053909872640/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1989, 'favorite_count': 16505, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jun 17 16:52:05 +0000 2017', 'id': 876120275196170240, 'id_str': '876120275196170240', 'full_text': 'Meet Venti, a seemingly caffeinated puppoccino. She was just informed the weekend would include walks, pats and scritches. 13/10 much excite https://t.co/ejExJFq3ek', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 876120269428932608, 'id_str': '876120269428932608', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg', 'url': 'https://t.co/ejExJFq3ek', 'display_url': 'pic.twitter.com/ejExJFq3ek', 'expanded_url': 'https://twitter.com/dog_rates/status/876120275196170240/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 876120269428932608, 'id_str': '876120269428932608', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg', 'url': 'https://t.co/ejExJFq3ek', 'display_url': 'pic.twitter.com/ejExJFq3ek', 'expanded_url': 'https://twitter.com/dog_rates/status/876120275196170240/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3887, 'favorite_count': 24598, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jun 16 16:11:53 +0000 2017', 'id': 875747767867523072, 'id_str': '875747767867523072', 'full_text': "This is Goose. He's a womanizer. Cheeky as h*ck, but also deep. Tongue slip game on another level. 13/10 will steal your girl https://t.co/V2WlACRJCN", 'truncated': False, 'display_text_range': [0, 125], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 875747755280318464, 'id_str': '875747755280318464', 'indices': [126, 149], 'media_url': 'http://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg', 'url': 'https://t.co/V2WlACRJCN', 'display_url': 'pic.twitter.com/V2WlACRJCN', 'expanded_url': 'https://twitter.com/dog_rates/status/875747767867523072/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 875747755280318464, 'id_str': '875747755280318464', 'indices': [126, 149], 'media_url': 'http://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg', 'url': 'https://t.co/V2WlACRJCN', 'display_url': 'pic.twitter.com/V2WlACRJCN', 'expanded_url': 'https://twitter.com/dog_rates/status/875747767867523072/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3563, 'favorite_count': 22022, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jun 15 00:13:52 +0000 2017', 'id': 875144289856114688, 'id_str': '875144289856114688', 'full_text': "Meet Nugget and Hank. Nugget took Hank's bone. Hank is wondering if you would please return it to him. Both 13/10 would not intervene https://t.co/ogith9ejNj", 'truncated': False, 'display_text_range': [0, 133], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 875144175078957056, 'id_str': '875144175078957056', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/875144175078957056/pu/img/BRi_l7vUdpb93Knf.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/875144175078957056/pu/img/BRi_l7vUdpb93Knf.jpg', 'url': 'https://t.co/ogith9ejNj', 'display_url': 'pic.twitter.com/ogith9ejNj', 'expanded_url': 'https://twitter.com/dog_rates/status/875144289856114688/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 720, 'h': 1280, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 875144175078957056, 'id_str': '875144175078957056', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/875144175078957056/pu/img/BRi_l7vUdpb93Knf.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/875144175078957056/pu/img/BRi_l7vUdpb93Knf.jpg', 'url': 'https://t.co/ogith9ejNj', 'display_url': 'pic.twitter.com/ogith9ejNj', 'expanded_url': 'https://twitter.com/dog_rates/status/875144289856114688/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 720, 'h': 1280, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [9, 16], 'duration_millis': 16778, 'variants': [{'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/875144175078957056/pu/pl/YwnR7lHYQOqklz_S.m3u8'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/875144175078957056/pu/vid/360x640/EY6RY4tS3IRSTEoz.mp4'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/875144175078957056/pu/vid/180x320/vwJtwWs3433URIJm.mp4'}, {'bitrate': 2176000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/875144175078957056/pu/vid/720x1280/M9IbYEg_OemZYcfp.mp4'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4131, 'favorite_count': 19356, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jun 14 21:06:43 +0000 2017', 'id': 875097192612077568, 'id_str': '875097192612077568', 'full_text': "You'll get your package when that precious man is done appreciating the pups. 13/10 for everyone https://t.co/PFp4MghzBW", 'truncated': False, 'display_text_range': [0, 96], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/PFp4MghzBW', 'expanded_url': 'https://twitter.com/drboondoc/status/874413398133547008', 'display_url': 'twitter.com/drboondoc/stat…', 'indices': [97, 120]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'quoted_status_id': 874413398133547008, 'quoted_status_id_str': '874413398133547008', 'quoted_status_permalink': {'url': 'https://t.co/PFp4MghzBW', 'expanded': 'https://twitter.com/drboondoc/status/874413398133547008', 'display': 'twitter.com/drboondoc/stat…'}, 'quoted_status': {'created_at': 'Mon Jun 12 23:49:34 +0000 2017', 'id': 874413398133547008, 'id_str': '874413398133547008', 'full_text': 'So this is why my damn "delivered by 3pm" packages don\'t arrive until 7... https://t.co/8bK5fRSK4W', 'truncated': False, 'display_text_range': [0, 74], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 874413321549631488, 'id_str': '874413321549631488', 'indices': [75, 98], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/874413321549631488/pu/img/Vvl1-BABjrCGgFwA.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/874413321549631488/pu/img/Vvl1-BABjrCGgFwA.jpg', 'url': 'https://t.co/8bK5fRSK4W', 'display_url': 'pic.twitter.com/8bK5fRSK4W', 'expanded_url': 'https://twitter.com/DrBoondoc/status/874413398133547008/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 720, 'h': 1280, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 874413321549631488, 'id_str': '874413321549631488', 'indices': [75, 98], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/874413321549631488/pu/img/Vvl1-BABjrCGgFwA.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/874413321549631488/pu/img/Vvl1-BABjrCGgFwA.jpg', 'url': 'https://t.co/8bK5fRSK4W', 'display_url': 'pic.twitter.com/8bK5fRSK4W', 'expanded_url': 'https://twitter.com/DrBoondoc/status/874413398133547008/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 720, 'h': 1280, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [9, 16], 'duration_millis': 11600, 'variants': [{'bitrate': 2176000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/874413321549631488/pu/vid/720x1280/k_aMBt4Fk5ixdRLL.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/874413321549631488/pu/pl/3bG-0yJtywavfmYz.m3u8'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/874413321549631488/pu/vid/360x640/_3DZesO10cg_jPkm.mp4'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/874413321549631488/pu/vid/180x320/AikxdBgb7tS_srdy.mp4'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 21357526, 'id_str': '21357526', 'name': 'City boy, but the city is my bedroom.', 'screen_name': 'DrBoondoc', 'location': 'The Isle of Dr Morehoes', 'description': 'Ignorant and insensitive. Professional heathen. Geektraordinaire. Unrepentantly ridiculous. Inflated sense of self aggrandizement with a propensity to hyperbole', 'url': None, 'entities': {'description': {'urls': []}}, 'protected': False, 'followers_count': 402, 'friends_count': 141, 'listed_count': 14, 'created_at': 'Fri Feb 20 00:32:04 +0000 2009', 'favourites_count': 1979, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': False, 'statuses_count': 56447, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': 'FBF7ED', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1556328722852184067/TeFbHxXv_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1556328722852184067/TeFbHxXv_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/21357526/1375303436', 'profile_link_color': '0084B4', 'profile_sidebar_border_color': 'FFC157', 'profile_sidebar_fill_color': '303A41', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 23828, 'favorite_count': 65645, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'retweet_count': 5091, 'favorite_count': 24155, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jun 14 16:04:48 +0000 2017', 'id': 875021211251597312, 'id_str': '875021211251597312', 'full_text': 'Guys please stop sending pictures without any dogs in th- oh never mind hello excuse me sir. 12/10 stealthy as h*ck https://t.co/brCQoqc8AW', 'truncated': False, 'display_text_range': [0, 115], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 875021140921417728, 'id_str': '875021140921417728', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/DCSzF3OUAAAs6lS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCSzF3OUAAAs6lS.jpg', 'url': 'https://t.co/brCQoqc8AW', 'display_url': 'pic.twitter.com/brCQoqc8AW', 'expanded_url': 'https://twitter.com/dog_rates/status/875021211251597312/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 666, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1568, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1176, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 875021140921417728, 'id_str': '875021140921417728', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/DCSzF3OUAAAs6lS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCSzF3OUAAAs6lS.jpg', 'url': 'https://t.co/brCQoqc8AW', 'display_url': 'pic.twitter.com/brCQoqc8AW', 'expanded_url': 'https://twitter.com/dog_rates/status/875021211251597312/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 666, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1568, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1176, 'resize': 'fit'}}}, {'id': 875021140917329920, 'id_str': '875021140917329920', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg', 'url': 'https://t.co/brCQoqc8AW', 'display_url': 'pic.twitter.com/brCQoqc8AW', 'expanded_url': 'https://twitter.com/dog_rates/status/875021211251597312/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1600, 'h': 1590, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1193, 'resize': 'fit'}, 'small': {'w': 680, 'h': 676, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3952, 'favorite_count': 22478, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jun 13 17:29:20 +0000 2017', 'id': 874680097055178752, 'id_str': '874680097055178752', 'full_text': 'Meet Cash. He hath acquired a stick. A very good stick tbh. 12/10 would pat head approvingly https://t.co/lZhtizkURD', 'truncated': False, 'display_text_range': [0, 92], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 874680081829904384, 'id_str': '874680081829904384', 'indices': [93, 116], 'media_url': 'http://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg', 'url': 'https://t.co/lZhtizkURD', 'display_url': 'pic.twitter.com/lZhtizkURD', 'expanded_url': 'https://twitter.com/dog_rates/status/874680097055178752/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 874680081829904384, 'id_str': '874680081829904384', 'indices': [93, 116], 'media_url': 'http://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg', 'url': 'https://t.co/lZhtizkURD', 'display_url': 'pic.twitter.com/lZhtizkURD', 'expanded_url': 'https://twitter.com/dog_rates/status/874680097055178752/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3904, 'favorite_count': 24506, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jun 13 01:14:41 +0000 2017', 'id': 874434818259525634, 'id_str': '874434818259525634', 'full_text': "RT @dog_rates: This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.c…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sun May 21 16:48:45 +0000 2017', 'id': 866334964761202691, 'id_str': '866334964761202691', 'full_text': "This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.co/W86h5dgR6c", 'truncated': False, 'display_text_range': [0, 112], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 866334954229301248, 'id_str': '866334954229301248', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg', 'url': 'https://t.co/W86h5dgR6c', 'display_url': 'pic.twitter.com/W86h5dgR6c', 'expanded_url': 'https://twitter.com/dog_rates/status/866334964761202691/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 866334954229301248, 'id_str': '866334954229301248', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg', 'url': 'https://t.co/W86h5dgR6c', 'display_url': 'pic.twitter.com/W86h5dgR6c', 'expanded_url': 'https://twitter.com/dog_rates/status/866334964761202691/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 866334954225115140, 'id_str': '866334954225115140', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/DAXXDQMXoAQa0no.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAXXDQMXoAQa0no.jpg', 'url': 'https://t.co/W86h5dgR6c', 'display_url': 'pic.twitter.com/W86h5dgR6c', 'expanded_url': 'https://twitter.com/dog_rates/status/866334964761202691/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 12155, 'favorite_count': 46402, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 12155, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Mon Jun 12 16:06:11 +0000 2017', 'id': 874296783580663808, 'id_str': '874296783580663808', 'full_text': 'This is Jed. He may be the fanciest pupper in the game right now. Knows it too. 13/10 would sign modeling contract https://t.co/0YplNnSMEm', 'truncated': False, 'display_text_range': [0, 114], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 874296776056078336, 'id_str': '874296776056078336', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg', 'url': 'https://t.co/0YplNnSMEm', 'display_url': 'pic.twitter.com/0YplNnSMEm', 'expanded_url': 'https://twitter.com/dog_rates/status/874296783580663808/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 945, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1260, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 536, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 874296776056078336, 'id_str': '874296776056078336', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg', 'url': 'https://t.co/0YplNnSMEm', 'display_url': 'pic.twitter.com/0YplNnSMEm', 'expanded_url': 'https://twitter.com/dog_rates/status/874296783580663808/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 945, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1260, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 536, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3469, 'favorite_count': 22869, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jun 12 00:15:36 +0000 2017', 'id': 874057562936811520, 'id_str': '874057562936811520', 'full_text': "I can't believe this keeps happening. This, is a birb taking a bath. We only rate dogs. Please only send dogs. Thank you... 12/10 https://t.co/pwY9PQhtP2", 'truncated': False, 'display_text_range': [0, 129], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 874057549548589057, 'id_str': '874057549548589057', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg', 'url': 'https://t.co/pwY9PQhtP2', 'display_url': 'pic.twitter.com/pwY9PQhtP2', 'expanded_url': 'https://twitter.com/dog_rates/status/874057562936811520/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 874057549548589057, 'id_str': '874057549548589057', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg', 'url': 'https://t.co/pwY9PQhtP2', 'display_url': 'pic.twitter.com/pwY9PQhtP2', 'expanded_url': 'https://twitter.com/dog_rates/status/874057562936811520/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3366, 'favorite_count': 20043, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jun 11 21:18:31 +0000 2017', 'id': 874012996292530176, 'id_str': '874012996292530176', 'full_text': "This is Sebastian. He can't see all the colors of the rainbow, but he can see that this flag makes his human happy. 13/10 #PrideMonth puppo https://t.co/XBE0evJZ6V", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [{'text': 'PrideMonth', 'indices': [122, 133]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 874012990328197120, 'id_str': '874012990328197120', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DCEeLxmW0AAHXNk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCEeLxmW0AAHXNk.jpg', 'url': 'https://t.co/XBE0evJZ6V', 'display_url': 'pic.twitter.com/XBE0evJZ6V', 'expanded_url': 'https://twitter.com/dog_rates/status/874012996292530176/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1599, 'h': 1117, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 838, 'resize': 'fit'}, 'small': {'w': 680, 'h': 475, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 874012990328197120, 'id_str': '874012990328197120', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DCEeLxmW0AAHXNk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCEeLxmW0AAHXNk.jpg', 'url': 'https://t.co/XBE0evJZ6V', 'display_url': 'pic.twitter.com/XBE0evJZ6V', 'expanded_url': 'https://twitter.com/dog_rates/status/874012996292530176/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1599, 'h': 1117, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 838, 'resize': 'fit'}, 'small': {'w': 680, 'h': 475, 'resize': 'fit'}}}, {'id': 874012990315671552, 'id_str': '874012990315671552', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg', 'url': 'https://t.co/XBE0evJZ6V', 'display_url': 'pic.twitter.com/XBE0evJZ6V', 'expanded_url': 'https://twitter.com/dog_rates/status/874012996292530176/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1199, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1601, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 8547, 'favorite_count': 30011, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jun 10 16:39:04 +0000 2017', 'id': 873580283840344065, 'id_str': '873580283840344065', 'full_text': "We usually don't rate Deck-bound Saskatoon Black Bears, but this one is h*ckin flawless. Sneaky tongue slip too. 13/10 would hug firmly https://t.co/mNuMH9400n", 'truncated': False, 'display_text_range': [0, 135], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 873580279771926529, 'id_str': '873580279771926529', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg', 'url': 'https://t.co/mNuMH9400n', 'display_url': 'pic.twitter.com/mNuMH9400n', 'expanded_url': 'https://twitter.com/dog_rates/status/873580283840344065/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 873580279771926529, 'id_str': '873580279771926529', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg', 'url': 'https://t.co/mNuMH9400n', 'display_url': 'pic.twitter.com/mNuMH9400n', 'expanded_url': 'https://twitter.com/dog_rates/status/873580283840344065/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3332, 'favorite_count': 21300, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jun 10 00:35:19 +0000 2017', 'id': 873337748698140672, 'id_str': '873337748698140672', 'full_text': "RT @dog_rates: This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps:/…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Fri Jun 09 16:22:42 +0000 2017', 'id': 873213775632977920, 'id_str': '873213775632977920', 'full_text': "This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps://t.co/Xp01EU3qyD https://t.co/V5lkvrGLdQ", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/Xp01EU3qyD', 'expanded_url': 'https://www.gofundme.com/help-my-baby-sierra-get-better', 'display_url': 'gofundme.com/help-my-baby-s…', 'indices': [117, 140]}], 'media': [{'id': 873213769794670593, 'id_str': '873213769794670593', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg', 'url': 'https://t.co/V5lkvrGLdQ', 'display_url': 'pic.twitter.com/V5lkvrGLdQ', 'expanded_url': 'https://twitter.com/dog_rates/status/873213775632977920/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 800, 'h': 533, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'large': {'w': 800, 'h': 533, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 873213769794670593, 'id_str': '873213769794670593', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg', 'url': 'https://t.co/V5lkvrGLdQ', 'display_url': 'pic.twitter.com/V5lkvrGLdQ', 'expanded_url': 'https://twitter.com/dog_rates/status/873213775632977920/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 800, 'h': 533, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'large': {'w': 800, 'h': 533, 'resize': 'fit'}}}, {'id': 873213769819795456, 'id_str': '873213769819795456', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DB5HTBMWsAAdrYH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DB5HTBMWsAAdrYH.jpg', 'url': 'https://t.co/V5lkvrGLdQ', 'display_url': 'pic.twitter.com/V5lkvrGLdQ', 'expanded_url': 'https://twitter.com/dog_rates/status/873213775632977920/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1325, 'favorite_count': 6300, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 1325, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Fri Jun 09 16:22:42 +0000 2017', 'id': 873213775632977920, 'id_str': '873213775632977920', 'full_text': "This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps://t.co/Xp01EU3qyD https://t.co/V5lkvrGLdQ", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/Xp01EU3qyD', 'expanded_url': 'https://www.gofundme.com/help-my-baby-sierra-get-better', 'display_url': 'gofundme.com/help-my-baby-s…', 'indices': [117, 140]}], 'media': [{'id': 873213769794670593, 'id_str': '873213769794670593', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg', 'url': 'https://t.co/V5lkvrGLdQ', 'display_url': 'pic.twitter.com/V5lkvrGLdQ', 'expanded_url': 'https://twitter.com/dog_rates/status/873213775632977920/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 800, 'h': 533, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'large': {'w': 800, 'h': 533, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 873213769794670593, 'id_str': '873213769794670593', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg', 'url': 'https://t.co/V5lkvrGLdQ', 'display_url': 'pic.twitter.com/V5lkvrGLdQ', 'expanded_url': 'https://twitter.com/dog_rates/status/873213775632977920/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 800, 'h': 533, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'large': {'w': 800, 'h': 533, 'resize': 'fit'}}}, {'id': 873213769819795456, 'id_str': '873213769819795456', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DB5HTBMWsAAdrYH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DB5HTBMWsAAdrYH.jpg', 'url': 'https://t.co/V5lkvrGLdQ', 'display_url': 'pic.twitter.com/V5lkvrGLdQ', 'expanded_url': 'https://twitter.com/dog_rates/status/873213775632977920/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1325, 'favorite_count': 6300, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jun 09 00:02:31 +0000 2017', 'id': 872967104147763200, 'id_str': '872967104147763200', 'full_text': "Here's a very large dog. He has a date later. Politely asked this water person to check if his breath is bad. 12/10 good to go doggo https://t.co/EMYIdoblMR", 'truncated': False, 'display_text_range': [0, 132], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 872967099819462661, 'id_str': '872967099819462661', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/DB1m871XkAUbCkY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DB1m871XkAUbCkY.jpg', 'url': 'https://t.co/EMYIdoblMR', 'display_url': 'pic.twitter.com/EMYIdoblMR', 'expanded_url': 'https://twitter.com/dog_rates/status/872967104147763200/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1182, 'h': 1160, 'resize': 'fit'}, 'small': {'w': 680, 'h': 667, 'resize': 'fit'}, 'large': {'w': 1182, 'h': 1160, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 872967099819462661, 'id_str': '872967099819462661', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/DB1m871XkAUbCkY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DB1m871XkAUbCkY.jpg', 'url': 'https://t.co/EMYIdoblMR', 'display_url': 'pic.twitter.com/EMYIdoblMR', 'expanded_url': 'https://twitter.com/dog_rates/status/872967104147763200/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1182, 'h': 1160, 'resize': 'fit'}, 'small': {'w': 680, 'h': 667, 'resize': 'fit'}, 'large': {'w': 1182, 'h': 1160, 'resize': 'fit'}}}, {'id': 872967099819446272, 'id_str': '872967099819446272', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg', 'url': 'https://t.co/EMYIdoblMR', 'display_url': 'pic.twitter.com/EMYIdoblMR', 'expanded_url': 'https://twitter.com/dog_rates/status/872967104147763200/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1084, 'resize': 'fit'}, 'small': {'w': 680, 'h': 614, 'resize': 'fit'}, 'large': {'w': 1209, 'h': 1092, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4544, 'favorite_count': 23962, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jun 08 14:20:41 +0000 2017', 'id': 872820683541237760, 'id_str': '872820683541237760', 'full_text': 'Here are my favorite #dogsatpollingstations \nMost voted for a more consistent walking schedule and to increase daily pats tenfold. All 13/10 https://t.co/17FVMl4VZ5', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [{'text': 'dogsatpollingstations', 'indices': [21, 43]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 872820673743376386, 'id_str': '872820673743376386', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DBzhx0MXUAI5spb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBzhx0MXUAI5spb.jpg', 'url': 'https://t.co/17FVMl4VZ5', 'display_url': 'pic.twitter.com/17FVMl4VZ5', 'expanded_url': 'https://twitter.com/dog_rates/status/872820683541237760/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 583, 'h': 479, 'resize': 'fit'}, 'large': {'w': 583, 'h': 479, 'resize': 'fit'}, 'medium': {'w': 583, 'h': 479, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 872820673743376386, 'id_str': '872820673743376386', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DBzhx0MXUAI5spb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBzhx0MXUAI5spb.jpg', 'url': 'https://t.co/17FVMl4VZ5', 'display_url': 'pic.twitter.com/17FVMl4VZ5', 'expanded_url': 'https://twitter.com/dog_rates/status/872820683541237760/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 583, 'h': 479, 'resize': 'fit'}, 'large': {'w': 583, 'h': 479, 'resize': 'fit'}, 'medium': {'w': 583, 'h': 479, 'resize': 'fit'}}}, {'id': 872820673735000064, 'id_str': '872820673735000064', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DBzhx0KXgAAWHV8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBzhx0KXgAAWHV8.jpg', 'url': 'https://t.co/17FVMl4VZ5', 'display_url': 'pic.twitter.com/17FVMl4VZ5', 'expanded_url': 'https://twitter.com/dog_rates/status/872820683541237760/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 872820673755873281, 'id_str': '872820673755873281', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg', 'url': 'https://t.co/17FVMl4VZ5', 'display_url': 'pic.twitter.com/17FVMl4VZ5', 'expanded_url': 'https://twitter.com/dog_rates/status/872820683541237760/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 583, 'h': 777, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 583, 'h': 777, 'resize': 'fit'}}}, {'id': 872820673747591168, 'id_str': '872820673747591168', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DBzhx0NXoAAdwht.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBzhx0NXoAAdwht.jpg', 'url': 'https://t.co/17FVMl4VZ5', 'display_url': 'pic.twitter.com/17FVMl4VZ5', 'expanded_url': 'https://twitter.com/dog_rates/status/872820683541237760/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 575, 'h': 334, 'resize': 'fit'}, 'small': {'w': 575, 'h': 334, 'resize': 'fit'}, 'medium': {'w': 575, 'h': 334, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3156, 'favorite_count': 13026, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jun 08 01:06:27 +0000 2017', 'id': 872620804844003328, 'id_str': '872620804844003328', 'full_text': "This is Monkey. She's supporting owners everywhere with her fancy #PrideMonth bandana. 13/10 love is love is love... https://t.co/lUcpnZDPz9", 'truncated': False, 'display_text_range': [0, 116], 'entities': {'hashtags': [{'text': 'PrideMonth', 'indices': [66, 77]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 872620798208610305, 'id_str': '872620798208610305', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg', 'url': 'https://t.co/lUcpnZDPz9', 'display_url': 'pic.twitter.com/lUcpnZDPz9', 'expanded_url': 'https://twitter.com/dog_rates/status/872620804844003328/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 872620798208610305, 'id_str': '872620798208610305', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg', 'url': 'https://t.co/lUcpnZDPz9', 'display_url': 'pic.twitter.com/lUcpnZDPz9', 'expanded_url': 'https://twitter.com/dog_rates/status/872620804844003328/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3058, 'favorite_count': 18262, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jun 07 16:14:40 +0000 2017', 'id': 872486979161796608, 'id_str': '872486979161796608', 'full_text': 'We. Only. Rate. Dogs. Do not send in other things like this fluffy floor shark clearly ready to attack. Get it together guys... 12/10 https://t.co/BZHiKx3FpQ', 'truncated': False, 'display_text_range': [0, 133], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 872486967967006720, 'id_str': '872486967967006720', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg', 'url': 'https://t.co/BZHiKx3FpQ', 'display_url': 'pic.twitter.com/BZHiKx3FpQ', 'expanded_url': 'https://twitter.com/dog_rates/status/872486979161796608/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1586, 'h': 1600, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 674, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1190, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 872486967967006720, 'id_str': '872486967967006720', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg', 'url': 'https://t.co/BZHiKx3FpQ', 'display_url': 'pic.twitter.com/BZHiKx3FpQ', 'expanded_url': 'https://twitter.com/dog_rates/status/872486979161796608/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1586, 'h': 1600, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 674, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1190, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7681, 'favorite_count': 35972, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jun 06 16:07:15 +0000 2017', 'id': 872122724285648897, 'id_str': '872122724285648897', 'full_text': "This is Kody. He's a baller. Wishes he was a little bit taller. Double dribbles often. Still 12/10 would happily get dunked on https://t.co/PKSpmiefwN", 'truncated': False, 'display_text_range': [0, 126], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 872122708573777925, 'id_str': '872122708573777925', 'indices': [127, 150], 'media_url': 'http://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg', 'url': 'https://t.co/PKSpmiefwN', 'display_url': 'pic.twitter.com/PKSpmiefwN', 'expanded_url': 'https://twitter.com/dog_rates/status/872122724285648897/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 872122708573777925, 'id_str': '872122708573777925', 'indices': [127, 150], 'media_url': 'http://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg', 'url': 'https://t.co/PKSpmiefwN', 'display_url': 'pic.twitter.com/PKSpmiefwN', 'expanded_url': 'https://twitter.com/dog_rates/status/872122724285648897/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 872122708590551040, 'id_str': '872122708590551040', 'indices': [127, 150], 'media_url': 'http://pbs.twimg.com/media/DBpm-5YXYAARNQE.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBpm-5YXYAARNQE.jpg', 'url': 'https://t.co/PKSpmiefwN', 'display_url': 'pic.twitter.com/PKSpmiefwN', 'expanded_url': 'https://twitter.com/dog_rates/status/872122724285648897/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6798, 'favorite_count': 30089, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jun 06 00:01:46 +0000 2017', 'id': 871879754684805121, 'id_str': '871879754684805121', 'full_text': "Say hello to Lassie. She's celebrating #PrideMonth by being a splendid mix of astute and adorable. Proudly supupporting her owner. 13/10 https://t.co/uK6PNyeh9w", 'truncated': False, 'display_text_range': [0, 136], 'entities': {'hashtags': [{'text': 'PrideMonth', 'indices': [39, 50]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 871879745683804161, 'id_str': '871879745683804161', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg', 'url': 'https://t.co/uK6PNyeh9w', 'display_url': 'pic.twitter.com/uK6PNyeh9w', 'expanded_url': 'https://twitter.com/dog_rates/status/871879754684805121/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 871879745683804161, 'id_str': '871879745683804161', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg', 'url': 'https://t.co/uK6PNyeh9w', 'display_url': 'pic.twitter.com/uK6PNyeh9w', 'expanded_url': 'https://twitter.com/dog_rates/status/871879754684805121/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}}}, {'id': 871879745671241728, 'id_str': '871879745671241728', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/DBmKAl-XoAAme6q.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBmKAl-XoAAme6q.jpg', 'url': 'https://t.co/uK6PNyeh9w', 'display_url': 'pic.twitter.com/uK6PNyeh9w', 'expanded_url': 'https://twitter.com/dog_rates/status/871879754684805121/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9204, 'favorite_count': 32947, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jun 05 16:15:56 +0000 2017', 'id': 871762521631449091, 'id_str': '871762521631449091', 'full_text': 'This is Rover. As part of pupper protocol he had to at least attempt to eat the plant. Confirmed not tasty. Needs peanut butter. 12/10 https://t.co/AiVljI6QCg', 'truncated': False, 'display_text_range': [0, 134], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 871762515608436741, 'id_str': '871762515608436741', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/DBkfY59XgAUK52d.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBkfY59XgAUK52d.jpg', 'url': 'https://t.co/AiVljI6QCg', 'display_url': 'pic.twitter.com/AiVljI6QCg', 'expanded_url': 'https://twitter.com/dog_rates/status/871762521631449091/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 871762515608436741, 'id_str': '871762515608436741', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/DBkfY59XgAUK52d.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBkfY59XgAUK52d.jpg', 'url': 'https://t.co/AiVljI6QCg', 'display_url': 'pic.twitter.com/AiVljI6QCg', 'expanded_url': 'https://twitter.com/dog_rates/status/871762521631449091/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}, {'id': 871762515604238337, 'id_str': '871762515604238337', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg', 'url': 'https://t.co/AiVljI6QCg', 'display_url': 'pic.twitter.com/AiVljI6QCg', 'expanded_url': 'https://twitter.com/dog_rates/status/871762521631449091/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}, {'id': 871762515767824384, 'id_str': '871762515767824384', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/DBkfY6jXkAA1hjh.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBkfY6jXkAA1hjh.jpg', 'url': 'https://t.co/AiVljI6QCg', 'display_url': 'pic.twitter.com/AiVljI6QCg', 'expanded_url': 'https://twitter.com/dog_rates/status/871762521631449091/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2956, 'favorite_count': 17807, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jun 04 23:56:03 +0000 2017', 'id': 871515927908634625, 'id_str': '871515927908634625', 'full_text': "This is Napolean. He's a Raggedy East Nicaraguan Zoom Zoom. Runs on one leg. Built for deception. No eyes. Good with kids. 12/10 great doggo https://t.co/PR7B7w1rUw", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 871515922741284865, 'id_str': '871515922741284865', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DBg_HT8XUAEoyo_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBg_HT8XUAEoyo_.jpg', 'url': 'https://t.co/PR7B7w1rUw', 'display_url': 'pic.twitter.com/PR7B7w1rUw', 'expanded_url': 'https://twitter.com/dog_rates/status/871515927908634625/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1600, 'h': 1064, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 798, 'resize': 'fit'}, 'small': {'w': 680, 'h': 452, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 871515922741284865, 'id_str': '871515922741284865', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DBg_HT8XUAEoyo_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBg_HT8XUAEoyo_.jpg', 'url': 'https://t.co/PR7B7w1rUw', 'display_url': 'pic.twitter.com/PR7B7w1rUw', 'expanded_url': 'https://twitter.com/dog_rates/status/871515927908634625/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1600, 'h': 1064, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 798, 'resize': 'fit'}, 'small': {'w': 680, 'h': 452, 'resize': 'fit'}}}, {'id': 871515922745393153, 'id_str': '871515922745393153', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg', 'url': 'https://t.co/PR7B7w1rUw', 'display_url': 'pic.twitter.com/PR7B7w1rUw', 'expanded_url': 'https://twitter.com/dog_rates/status/871515927908634625/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 516, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 911, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1600, 'h': 1214, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2924, 'favorite_count': 17843, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jun 04 00:46:17 +0000 2017', 'id': 871166179821445120, 'id_str': '871166179821445120', 'full_text': "RT @dog_rates: This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/X…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Mon Mar 13 00:02:39 +0000 2017', 'id': 841077006473256960, 'id_str': '841077006473256960', 'full_text': "This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/XKJrmO4fAQ", 'truncated': False, 'display_text_range': [0, 109], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 841077001360461824, 'id_str': '841077001360461824', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg', 'url': 'https://t.co/XKJrmO4fAQ', 'display_url': 'pic.twitter.com/XKJrmO4fAQ', 'expanded_url': 'https://twitter.com/dog_rates/status/841077006473256960/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 841077001360461824, 'id_str': '841077001360461824', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg', 'url': 'https://t.co/XKJrmO4fAQ', 'display_url': 'pic.twitter.com/XKJrmO4fAQ', 'expanded_url': 'https://twitter.com/dog_rates/status/841077006473256960/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4876, 'favorite_count': 21285, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 4876, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sat Jun 03 20:33:19 +0000 2017', 'id': 871102520638267392, 'id_str': '871102520638267392', 'full_text': 'Never doubt a doggo 14/10 https://t.co/AbBLh2FZCH', 'truncated': False, 'display_text_range': [0, 25], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/AbBLh2FZCH', 'expanded_url': 'https://twitter.com/animalcog/status/871075758080503809', 'display_url': 'twitter.com/animalcog/stat…', 'indices': [26, 49]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'quoted_status_id': 871075758080503809, 'quoted_status_id_str': '871075758080503809', 'quoted_status_permalink': {'url': 'https://t.co/AbBLh2FZCH', 'expanded': 'https://twitter.com/animalcog/status/871075758080503809', 'display': 'twitter.com/animalcog/stat…'}, 'quoted_status': {'created_at': 'Sat Jun 03 18:46:59 +0000 2017', 'id': 871075758080503809, 'id_str': '871075758080503809', 'full_text': "A dog's clever solution. https://t.co/7qNdrBVAlA", 'truncated': False, 'display_text_range': [0, 24], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 871075694524203009, 'id_str': '871075694524203009', 'indices': [25, 48], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/871075694524203009/pu/img/WAB4Nn412S6K-IY_.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/871075694524203009/pu/img/WAB4Nn412S6K-IY_.jpg', 'url': 'https://t.co/7qNdrBVAlA', 'display_url': 'pic.twitter.com/7qNdrBVAlA', 'expanded_url': 'https://twitter.com/animalcog/status/871075758080503809/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}, 'large': {'w': 1280, 'h': 720, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 871075694524203009, 'id_str': '871075694524203009', 'indices': [25, 48], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/871075694524203009/pu/img/WAB4Nn412S6K-IY_.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/871075694524203009/pu/img/WAB4Nn412S6K-IY_.jpg', 'url': 'https://t.co/7qNdrBVAlA', 'display_url': 'pic.twitter.com/7qNdrBVAlA', 'expanded_url': 'https://twitter.com/animalcog/status/871075758080503809/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}, 'large': {'w': 1280, 'h': 720, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [16, 9], 'duration_millis': 36170, 'variants': [{'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/871075694524203009/pu/vid/640x360/8MNJRtaqh7cylswO.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/871075694524203009/pu/pl/_fg3rzHZb9J40wJb.m3u8'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/871075694524203009/pu/vid/320x180/PxWa9GGi0CIFtQaK.mp4'}, {'bitrate': 2176000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/871075694524203009/pu/vid/1280x720/s9r873KfVTspe_p1.mp4'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 2745835322, 'id_str': '2745835322', 'name': 'Animal Cognition', 'screen_name': 'animalcog', 'location': '', 'description': 'Help us report on investigations of the mental capacities of animals! https://t.co/7CCCV8goBy', 'url': 'https://t.co/R8jIFpiQfC', 'entities': {'url': {'urls': [{'url': 'https://t.co/R8jIFpiQfC', 'expanded_url': 'http://www.animalcognition.org', 'display_url': 'animalcognition.org', 'indices': [0, 23]}]}, 'description': {'urls': [{'url': 'https://t.co/7CCCV8goBy', 'expanded_url': 'http://patreon.com/animalcognition', 'display_url': 'patreon.com/animalcognition', 'indices': [70, 93]}]}}, 'protected': False, 'followers_count': 11632, 'friends_count': 1534, 'listed_count': 189, 'created_at': 'Tue Aug 19 17:40:56 +0000 2014', 'favourites_count': 1511, 'utc_offset': None, 'time_zone': None, 'geo_enabled': False, 'verified': False, 'statuses_count': 1555, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/574995919378063360/tWkNDOTF_normal.jpeg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/574995919378063360/tWkNDOTF_normal.jpeg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2745835322/1465481545', 'profile_link_color': '8EBC5A', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9650, 'favorite_count': 23102, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'retweet_count': 4649, 'favorite_count': 18482, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jun 03 15:55:36 +0000 2017', 'id': 871032628920680449, 'id_str': '871032628920680449', 'full_text': "This is Boomer. He's doing an advanced water takeoff. The opposite of Sully. Ears for control, mlem for style. 13/10 simply breathtaking https://t.co/noNpY2Laoo", 'truncated': False, 'display_text_range': [0, 136], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 871032610994225153, 'id_str': '871032610994225153', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg', 'url': 'https://t.co/noNpY2Laoo', 'display_url': 'pic.twitter.com/noNpY2Laoo', 'expanded_url': 'https://twitter.com/dog_rates/status/871032628920680449/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 871032610994225153, 'id_str': '871032610994225153', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg', 'url': 'https://t.co/noNpY2Laoo', 'display_url': 'pic.twitter.com/noNpY2Laoo', 'expanded_url': 'https://twitter.com/dog_rates/status/871032628920680449/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3213, 'favorite_count': 20085, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jun 03 00:48:22 +0000 2017', 'id': 870804317367881728, 'id_str': '870804317367881728', 'full_text': "Real funny guys. Sending in a pic without a dog in it. Hilarious. We'll rate the rug tho because it's giving off a very good vibe. 11/10 https://t.co/GCD1JccCyi", 'truncated': False, 'display_text_range': [0, 136], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 870804299743338497, 'id_str': '870804299743338497', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg', 'url': 'https://t.co/GCD1JccCyi', 'display_url': 'pic.twitter.com/GCD1JccCyi', 'expanded_url': 'https://twitter.com/dog_rates/status/870804317367881728/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 901, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 870804299743338497, 'id_str': '870804299743338497', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg', 'url': 'https://t.co/GCD1JccCyi', 'display_url': 'pic.twitter.com/GCD1JccCyi', 'expanded_url': 'https://twitter.com/dog_rates/status/870804317367881728/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 901, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5265, 'favorite_count': 29691, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jun 02 19:38:25 +0000 2017', 'id': 870726314365509632, 'id_str': '870726314365509632', 'full_text': '@ComplicitOwl @ShopWeRateDogs &gt;10/10 is reserved for dogs', 'truncated': False, 'display_text_range': [30, 60], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'ComplicitOwl', 'name': 'Derek', 'id': 16487760, 'id_str': '16487760', 'indices': [0, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 870726202742493184, 'in_reply_to_status_id_str': '870726202742493184', 'in_reply_to_user_id': 16487760, 'in_reply_to_user_id_str': '16487760', 'in_reply_to_screen_name': 'ComplicitOwl', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3, 'favorite_count': 105, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Fri Jun 02 15:00:16 +0000 2017', 'id': 870656317836468226, 'id_str': '870656317836468226', 'full_text': 'This is Cody. He zoomed too aggressively and tore his ACL. Happens to the best of us. Still 13/10\n\nHelp Cody here: https://t.co/4hxnDOt1CV https://t.co/42ryYRQ2Q4', 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/4hxnDOt1CV', 'expanded_url': 'https://www.gofundme.com/help-fix-codys-torn-acl', 'display_url': 'gofundme.com/help-fix-codys…', 'indices': [115, 138]}], 'media': [{'id': 870656293136216066, 'id_str': '870656293136216066', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DBUxSSHXsAIz4Un.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBUxSSHXsAIz4Un.jpg', 'url': 'https://t.co/42ryYRQ2Q4', 'display_url': 'pic.twitter.com/42ryYRQ2Q4', 'expanded_url': 'https://twitter.com/dog_rates/status/870656317836468226/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 870656293136216066, 'id_str': '870656293136216066', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DBUxSSHXsAIz4Un.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBUxSSHXsAIz4Un.jpg', 'url': 'https://t.co/42ryYRQ2Q4', 'display_url': 'pic.twitter.com/42ryYRQ2Q4', 'expanded_url': 'https://twitter.com/dog_rates/status/870656317836468226/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}, {'id': 870656293161361408, 'id_str': '870656293161361408', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DBUxSSNXYAA9VO_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBUxSSNXYAA9VO_.jpg', 'url': 'https://t.co/42ryYRQ2Q4', 'display_url': 'pic.twitter.com/42ryYRQ2Q4', 'expanded_url': 'https://twitter.com/dog_rates/status/870656317836468226/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 576, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 576, 'h': 1024, 'resize': 'fit'}}}, {'id': 870656293207461892, 'id_str': '870656293207461892', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DBUxSSYW0AQOCOx.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBUxSSYW0AQOCOx.jpg', 'url': 'https://t.co/42ryYRQ2Q4', 'display_url': 'pic.twitter.com/42ryYRQ2Q4', 'expanded_url': 'https://twitter.com/dog_rates/status/870656317836468226/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}}, {'id': 870656293186547712, 'id_str': '870656293186547712', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg', 'url': 'https://t.co/42ryYRQ2Q4', 'display_url': 'pic.twitter.com/42ryYRQ2Q4', 'expanded_url': 'https://twitter.com/dog_rates/status/870656317836468226/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 679, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1023, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 1023, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2190, 'favorite_count': 10852, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jun 01 20:18:38 +0000 2017', 'id': 870374049280663552, 'id_str': '870374049280663552', 'full_text': 'This is Zoey. She really likes the planet. Would hate to see willful ignorance and the denial of fairly elemental science destroy it. 13/10 https://t.co/T1xlgaPujm', 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 870374041554751488, 'id_str': '870374041554751488', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg', 'url': 'https://t.co/T1xlgaPujm', 'display_url': 'pic.twitter.com/T1xlgaPujm', 'expanded_url': 'https://twitter.com/dog_rates/status/870374049280663552/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 646, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1520, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1140, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 870374041554751488, 'id_str': '870374041554751488', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg', 'url': 'https://t.co/T1xlgaPujm', 'display_url': 'pic.twitter.com/T1xlgaPujm', 'expanded_url': 'https://twitter.com/dog_rates/status/870374049280663552/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 646, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1520, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1140, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 22645, 'favorite_count': 73672, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jun 01 16:00:09 +0000 2017', 'id': 870308999962521604, 'id_str': '870308999962521604', 'full_text': "This is Rumble, but he's not ready to. Would rather fall asleep in his bath bucket. 13/10 would attempt a boop without waking https://t.co/MVQCzrF1g9", 'truncated': False, 'display_text_range': [0, 125], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 870308992022568960, 'id_str': '870308992022568960', 'indices': [126, 149], 'media_url': 'http://pbs.twimg.com/media/DBP1aspVYAA4sPW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBP1aspVYAA4sPW.jpg', 'url': 'https://t.co/MVQCzrF1g9', 'display_url': 'pic.twitter.com/MVQCzrF1g9', 'expanded_url': 'https://twitter.com/dog_rates/status/870308999962521604/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1200, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 870308992022568960, 'id_str': '870308992022568960', 'indices': [126, 149], 'media_url': 'http://pbs.twimg.com/media/DBP1aspVYAA4sPW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBP1aspVYAA4sPW.jpg', 'url': 'https://t.co/MVQCzrF1g9', 'display_url': 'pic.twitter.com/MVQCzrF1g9', 'expanded_url': 'https://twitter.com/dog_rates/status/870308999962521604/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1200, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}, {'id': 870308991993118721, 'id_str': '870308991993118721', 'indices': [126, 149], 'media_url': 'http://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg', 'url': 'https://t.co/MVQCzrF1g9', 'display_url': 'pic.twitter.com/MVQCzrF1g9', 'expanded_url': 'https://twitter.com/dog_rates/status/870308999962521604/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1200, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3533, 'favorite_count': 19412, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed May 31 23:43:25 +0000 2017', 'id': 870063196459192321, 'id_str': '870063196459192321', 'full_text': "Meet Clifford. He's quite large. Also red. Good w kids. Somehow never steps on them. Massive poops very inconvenient. Still 14/10 would ride https://t.co/apVOyDgOju", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 870063191304392704, 'id_str': '870063191304392704', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg', 'url': 'https://t.co/apVOyDgOju', 'display_url': 'pic.twitter.com/apVOyDgOju', 'expanded_url': 'https://twitter.com/dog_rates/status/870063196459192321/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1014, 'h': 761, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1014, 'h': 761, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 870063191304392704, 'id_str': '870063191304392704', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg', 'url': 'https://t.co/apVOyDgOju', 'display_url': 'pic.twitter.com/apVOyDgOju', 'expanded_url': 'https://twitter.com/dog_rates/status/870063196459192321/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1014, 'h': 761, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1014, 'h': 761, 'resize': 'fit'}}}, {'id': 870063191308611585, 'id_str': '870063191308611585', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/DBMV3NoXsAE3tXJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBMV3NoXsAE3tXJ.jpg', 'url': 'https://t.co/apVOyDgOju', 'display_url': 'pic.twitter.com/apVOyDgOju', 'expanded_url': 'https://twitter.com/dog_rates/status/870063196459192321/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1746, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 580, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1023, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7049, 'favorite_count': 32303, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed May 31 04:27:59 +0000 2017', 'id': 869772420881756160, 'id_str': '869772420881756160', 'full_text': 'This is Dewey (pronounced "covfefe"). He\'s having a good walk. Arguably the best walk. 13/10 would snug softly https://t.co/HciEaJkC4D', 'truncated': False, 'display_text_range': [0, 110], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 869772408907071492, 'id_str': '869772408907071492', 'indices': [111, 134], 'media_url': 'http://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg', 'url': 'https://t.co/HciEaJkC4D', 'display_url': 'pic.twitter.com/HciEaJkC4D', 'expanded_url': 'https://twitter.com/dog_rates/status/869772420881756160/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 869772408907071492, 'id_str': '869772408907071492', 'indices': [111, 134], 'media_url': 'http://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg', 'url': 'https://t.co/HciEaJkC4D', 'display_url': 'pic.twitter.com/HciEaJkC4D', 'expanded_url': 'https://twitter.com/dog_rates/status/869772420881756160/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 8657, 'favorite_count': 37881, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue May 30 23:51:58 +0000 2017', 'id': 869702957897576449, 'id_str': '869702957897576449', 'full_text': "Meet Stanley. He likes road trips. Will shift for you. One ear more effective than other. 13/10 we don't leave until you buckle pup Stanley https://t.co/vmCu3PFCQq", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 869702951354474496, 'id_str': '869702951354474496', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg', 'url': 'https://t.co/vmCu3PFCQq', 'display_url': 'pic.twitter.com/vmCu3PFCQq', 'expanded_url': 'https://twitter.com/dog_rates/status/869702957897576449/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 901, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 869702951354474496, 'id_str': '869702951354474496', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg', 'url': 'https://t.co/vmCu3PFCQq', 'display_url': 'pic.twitter.com/vmCu3PFCQq', 'expanded_url': 'https://twitter.com/dog_rates/status/869702957897576449/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 901, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5361, 'favorite_count': 24957, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue May 30 16:49:31 +0000 2017', 'id': 869596645499047938, 'id_str': '869596645499047938', 'full_text': 'This is Scout. He just graduated. Officially a doggo now. Have fun with taxes and losing sight of your ambitions. 12/10 would throw cap for https://t.co/DsA2hwXAJo', 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 869596640562249728, 'id_str': '869596640562249728', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg', 'url': 'https://t.co/DsA2hwXAJo', 'display_url': 'pic.twitter.com/DsA2hwXAJo', 'expanded_url': 'https://twitter.com/dog_rates/status/869596645499047938/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 921, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 522, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1228, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 869596640562249728, 'id_str': '869596640562249728', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg', 'url': 'https://t.co/DsA2hwXAJo', 'display_url': 'pic.twitter.com/DsA2hwXAJo', 'expanded_url': 'https://twitter.com/dog_rates/status/869596645499047938/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 921, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 522, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1228, 'h': 1600, 'resize': 'fit'}}}, {'id': 869596640562339842, 'id_str': '869596640562339842', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DBFtiYqXYAIhPZw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBFtiYqXYAIhPZw.jpg', 'url': 'https://t.co/DsA2hwXAJo', 'display_url': 'pic.twitter.com/DsA2hwXAJo', 'expanded_url': 'https://twitter.com/dog_rates/status/869596645499047938/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1109, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1479, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 629, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2625, 'favorite_count': 14135, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon May 29 16:24:37 +0000 2017', 'id': 869227993411051520, 'id_str': '869227993411051520', 'full_text': 'This is Gizmo. His favorite thing is standing pupright like a hooman. Sneaky tongue slip status achieved. 13/10 would boop well https://t.co/IoR3n1fiiQ', 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 869227980345798656, 'id_str': '869227980345798656', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg', 'url': 'https://t.co/IoR3n1fiiQ', 'display_url': 'pic.twitter.com/IoR3n1fiiQ', 'expanded_url': 'https://twitter.com/dog_rates/status/869227993411051520/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 570, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1008, 'h': 1203, 'resize': 'fit'}, 'medium': {'w': 1005, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 869227980345798656, 'id_str': '869227980345798656', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg', 'url': 'https://t.co/IoR3n1fiiQ', 'display_url': 'pic.twitter.com/IoR3n1fiiQ', 'expanded_url': 'https://twitter.com/dog_rates/status/869227993411051520/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 570, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1008, 'h': 1203, 'resize': 'fit'}, 'medium': {'w': 1005, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3181, 'favorite_count': 18076, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun May 28 17:23:24 +0000 2017', 'id': 868880397819494401, 'id_str': '868880397819494401', 'full_text': "This is Walter. He won't start hydrotherapy without his favorite floatie. 14/10 keep it pup Walter https://t.co/r28jFx9uyF", 'truncated': False, 'display_text_range': [0, 98], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 868880391209275392, 'id_str': '868880391209275392', 'indices': [99, 122], 'media_url': 'http://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg', 'url': 'https://t.co/r28jFx9uyF', 'display_url': 'pic.twitter.com/r28jFx9uyF', 'expanded_url': 'https://twitter.com/dog_rates/status/868880397819494401/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 868880391209275392, 'id_str': '868880391209275392', 'indices': [99, 122], 'media_url': 'http://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg', 'url': 'https://t.co/r28jFx9uyF', 'display_url': 'pic.twitter.com/r28jFx9uyF', 'expanded_url': 'https://twitter.com/dog_rates/status/868880397819494401/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 12193, 'favorite_count': 57718, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun May 28 01:26:04 +0000 2017', 'id': 868639477480148993, 'id_str': '868639477480148993', 'full_text': 'RT @dog_rates: Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sat May 27 19:39:34 +0000 2017', 'id': 868552278524837888, 'id_str': '868552278524837888', 'full_text': 'Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://t.co/ZMTE4Mr69f https://t.co/7RyeXTYLNi', 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/ZMTE4Mr69f', 'expanded_url': 'https://www.gofundme.com/3ti3nps', 'display_url': 'gofundme.com/3ti3nps', 'indices': [116, 139]}], 'media': [{'id': 868552270358618113, 'id_str': '868552270358618113', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg', 'url': 'https://t.co/7RyeXTYLNi', 'display_url': 'pic.twitter.com/7RyeXTYLNi', 'expanded_url': 'https://twitter.com/dog_rates/status/868552278524837888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1365, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 868552270358618113, 'id_str': '868552270358618113', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg', 'url': 'https://t.co/7RyeXTYLNi', 'display_url': 'pic.twitter.com/7RyeXTYLNi', 'expanded_url': 'https://twitter.com/dog_rates/status/868552278524837888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1365, 'resize': 'fit'}}}, {'id': 868552270358618112, 'id_str': '868552270358618112', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DA23sCeVoAA8Bj0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DA23sCeVoAA8Bj0.jpg', 'url': 'https://t.co/7RyeXTYLNi', 'display_url': 'pic.twitter.com/7RyeXTYLNi', 'expanded_url': 'https://twitter.com/dog_rates/status/868552278524837888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1365, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1740, 'favorite_count': 8925, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 1740, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sun May 28 00:18:35 +0000 2017', 'id': 868622495443632128, 'id_str': '868622495443632128', 'full_text': "Here's a h*ckin peaceful boy. Unbothered by the comings and goings. 13/10 please reveal your wise ways https://t.co/yeaH8Ej5eM", 'truncated': False, 'display_text_range': [0, 102], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 868622480696651777, 'id_str': '868622480696651777', 'indices': [103, 126], 'media_url': 'http://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg', 'url': 'https://t.co/yeaH8Ej5eM', 'display_url': 'pic.twitter.com/yeaH8Ej5eM', 'expanded_url': 'https://twitter.com/dog_rates/status/868622495443632128/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 637, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1199, 'h': 1280, 'resize': 'fit'}, 'medium': {'w': 1124, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 868622480696651777, 'id_str': '868622480696651777', 'indices': [103, 126], 'media_url': 'http://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg', 'url': 'https://t.co/yeaH8Ej5eM', 'display_url': 'pic.twitter.com/yeaH8Ej5eM', 'expanded_url': 'https://twitter.com/dog_rates/status/868622495443632128/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 637, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1199, 'h': 1280, 'resize': 'fit'}, 'medium': {'w': 1124, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4442, 'favorite_count': 23555, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat May 27 19:39:34 +0000 2017', 'id': 868552278524837888, 'id_str': '868552278524837888', 'full_text': 'Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://t.co/ZMTE4Mr69f https://t.co/7RyeXTYLNi', 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/ZMTE4Mr69f', 'expanded_url': 'https://www.gofundme.com/3ti3nps', 'display_url': 'gofundme.com/3ti3nps', 'indices': [116, 139]}], 'media': [{'id': 868552270358618113, 'id_str': '868552270358618113', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg', 'url': 'https://t.co/7RyeXTYLNi', 'display_url': 'pic.twitter.com/7RyeXTYLNi', 'expanded_url': 'https://twitter.com/dog_rates/status/868552278524837888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1365, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 868552270358618113, 'id_str': '868552270358618113', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg', 'url': 'https://t.co/7RyeXTYLNi', 'display_url': 'pic.twitter.com/7RyeXTYLNi', 'expanded_url': 'https://twitter.com/dog_rates/status/868552278524837888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1365, 'resize': 'fit'}}}, {'id': 868552270358618112, 'id_str': '868552270358618112', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/DA23sCeVoAA8Bj0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DA23sCeVoAA8Bj0.jpg', 'url': 'https://t.co/7RyeXTYLNi', 'display_url': 'pic.twitter.com/7RyeXTYLNi', 'expanded_url': 'https://twitter.com/dog_rates/status/868552278524837888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1365, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1740, 'favorite_count': 8925, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri May 26 00:29:37 +0000 2017', 'id': 867900495410671616, 'id_str': '867900495410671616', 'full_text': 'Unbelievable. We only rate dogs. Please don\'t send in non-canines like the "I" from Pixar\'s opening credits. Thank you... 12/10 https://t.co/JMhDNv5wXZ', 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 867900486011297792, 'id_str': '867900486011297792', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg', 'url': 'https://t.co/JMhDNv5wXZ', 'display_url': 'pic.twitter.com/JMhDNv5wXZ', 'expanded_url': 'https://twitter.com/dog_rates/status/867900495410671616/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1005, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1340, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 570, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 867900486011297792, 'id_str': '867900486011297792', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg', 'url': 'https://t.co/JMhDNv5wXZ', 'display_url': 'pic.twitter.com/JMhDNv5wXZ', 'expanded_url': 'https://twitter.com/dog_rates/status/867900495410671616/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1005, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1340, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 570, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3554, 'favorite_count': 21511, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu May 25 16:10:44 +0000 2017', 'id': 867774946302451713, 'id_str': '867774946302451713', 'full_text': "Meet Harold.  He's h*ckin cooperative. 13/10 good work Harold https://t.co/ZYg3NZGICa", 'truncated': False, 'display_text_range': [0, 61], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 867774933065236480, 'id_str': '867774933065236480', 'indices': [62, 85], 'media_url': 'http://pbs.twimg.com/media/DAr0tDZXgAAzJEw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAr0tDZXgAAzJEw.jpg', 'url': 'https://t.co/ZYg3NZGICa', 'display_url': 'pic.twitter.com/ZYg3NZGICa', 'expanded_url': 'https://twitter.com/dog_rates/status/867774946302451713/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 616, 'h': 306, 'resize': 'fit'}, 'large': {'w': 616, 'h': 306, 'resize': 'fit'}, 'small': {'w': 616, 'h': 306, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 867774933065236480, 'id_str': '867774933065236480', 'indices': [62, 85], 'media_url': 'http://pbs.twimg.com/media/DAr0tDZXgAAzJEw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAr0tDZXgAAzJEw.jpg', 'url': 'https://t.co/ZYg3NZGICa', 'display_url': 'pic.twitter.com/ZYg3NZGICa', 'expanded_url': 'https://twitter.com/dog_rates/status/867774946302451713/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 616, 'h': 306, 'resize': 'fit'}, 'large': {'w': 616, 'h': 306, 'resize': 'fit'}, 'small': {'w': 616, 'h': 306, 'resize': 'fit'}}}, {'id': 867774933065224193, 'id_str': '867774933065224193', 'indices': [62, 85], 'media_url': 'http://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg', 'url': 'https://t.co/ZYg3NZGICa', 'display_url': 'pic.twitter.com/ZYg3NZGICa', 'expanded_url': 'https://twitter.com/dog_rates/status/867774946302451713/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 453, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 800, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1067, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6226, 'favorite_count': 30149, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed May 24 16:44:18 +0000 2017', 'id': 867421006826221569, 'id_str': '867421006826221569', 'full_text': 'This is Shikha. She just watched you drop a skittle on the ground and still eat it. Could not be less impressed. 12/10 superior puppo https://t.co/XZlZKd73go', 'truncated': False, 'display_text_range': [0, 133], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 867420991437365250, 'id_str': '867420991437365250', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg', 'url': 'https://t.co/XZlZKd73go', 'display_url': 'pic.twitter.com/XZlZKd73go', 'expanded_url': 'https://twitter.com/dog_rates/status/867421006826221569/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 867420991437365250, 'id_str': '867420991437365250', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg', 'url': 'https://t.co/XZlZKd73go', 'display_url': 'pic.twitter.com/XZlZKd73go', 'expanded_url': 'https://twitter.com/dog_rates/status/867421006826221569/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2109, 'favorite_count': 14291, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue May 23 17:40:04 +0000 2017', 'id': 867072653475098625, 'id_str': '867072653475098625', 'full_text': 'RT @rachaeleasler: these @dog_rates hats are 13/10 bean approved https://t.co/nRCdq4g9gG', 'truncated': False, 'display_text_range': [0, 88], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'rachaeleasler', 'name': 'Rachael', 'id': 787461778435289088, 'id_str': '787461778435289088', 'indices': [3, 17]}, {'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [25, 35]}], 'urls': [], 'media': [{'id': 865013414103363585, 'id_str': '865013414103363585', 'indices': [65, 88], 'media_url': 'http://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg', 'url': 'https://t.co/nRCdq4g9gG', 'display_url': 'pic.twitter.com/nRCdq4g9gG', 'expanded_url': 'https://twitter.com/rachaeleasler/status/865013420445368320/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1080, 'h': 1440, 'resize': 'fit'}}, 'source_status_id': 865013420445368320, 'source_status_id_str': '865013420445368320', 'source_user_id': 787461778435289088, 'source_user_id_str': '787461778435289088'}]}, 'extended_entities': {'media': [{'id': 865013414103363585, 'id_str': '865013414103363585', 'indices': [65, 88], 'media_url': 'http://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg', 'url': 'https://t.co/nRCdq4g9gG', 'display_url': 'pic.twitter.com/nRCdq4g9gG', 'expanded_url': 'https://twitter.com/rachaeleasler/status/865013420445368320/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1080, 'h': 1440, 'resize': 'fit'}}, 'source_status_id': 865013420445368320, 'source_status_id_str': '865013420445368320', 'source_user_id': 787461778435289088, 'source_user_id_str': '787461778435289088'}, {'id': 865013414099169280, 'id_str': '865013414099169280', 'indices': [65, 88], 'media_url': 'http://pbs.twimg.com/media/DAElHflUMAA9jF7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAElHflUMAA9jF7.jpg', 'url': 'https://t.co/nRCdq4g9gG', 'display_url': 'pic.twitter.com/nRCdq4g9gG', 'expanded_url': 'https://twitter.com/rachaeleasler/status/865013420445368320/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1080, 'h': 1440, 'resize': 'fit'}}, 'source_status_id': 865013420445368320, 'source_status_id_str': '865013420445368320', 'source_user_id': 787461778435289088, 'source_user_id_str': '787461778435289088'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Thu May 18 01:17:25 +0000 2017', 'id': 865013420445368320, 'id_str': '865013420445368320', 'full_text': 'these @dog_rates hats are 13/10 bean approved https://t.co/nRCdq4g9gG', 'truncated': False, 'display_text_range': [0, 45], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [6, 16]}], 'urls': [], 'media': [{'id': 865013414103363585, 'id_str': '865013414103363585', 'indices': [46, 69], 'media_url': 'http://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg', 'url': 'https://t.co/nRCdq4g9gG', 'display_url': 'pic.twitter.com/nRCdq4g9gG', 'expanded_url': 'https://twitter.com/rachaeleasler/status/865013420445368320/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1080, 'h': 1440, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 865013414103363585, 'id_str': '865013414103363585', 'indices': [46, 69], 'media_url': 'http://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg', 'url': 'https://t.co/nRCdq4g9gG', 'display_url': 'pic.twitter.com/nRCdq4g9gG', 'expanded_url': 'https://twitter.com/rachaeleasler/status/865013420445368320/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1080, 'h': 1440, 'resize': 'fit'}}}, {'id': 865013414099169280, 'id_str': '865013414099169280', 'indices': [46, 69], 'media_url': 'http://pbs.twimg.com/media/DAElHflUMAA9jF7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAElHflUMAA9jF7.jpg', 'url': 'https://t.co/nRCdq4g9gG', 'display_url': 'pic.twitter.com/nRCdq4g9gG', 'expanded_url': 'https://twitter.com/rachaeleasler/status/865013420445368320/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1080, 'h': 1440, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 787461778435289088, 'id_str': '787461778435289088', 'name': 'Rachael', 'screen_name': 'rachaeleasler', 'location': 'Austin, TX', 'description': 'Aspiring Ecologist', 'url': None, 'entities': {'description': {'urls': []}}, 'protected': False, 'followers_count': 395, 'friends_count': 230, 'listed_count': 0, 'created_at': 'Sun Oct 16 01:14:53 +0000 2016', 'favourites_count': 24585, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': False, 'statuses_count': 131, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': 'F5F8FA', 'profile_background_image_url': None, 'profile_background_image_url_https': None, 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1407483620571373576/ChgkQvkm_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1407483620571373576/ChgkQvkm_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/787461778435289088/1624403251', 'profile_link_color': '1DA1F2', 'profile_sidebar_border_color': 'C0DEED', 'profile_sidebar_fill_color': 'DDEEF6', 'profile_text_color': '333333', 'profile_use_background_image': True, 'has_extended_profile': True, 'default_profile': True, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 100, 'favorite_count': 1594, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 100, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue May 23 16:16:06 +0000 2017', 'id': 867051520902168576, 'id_str': '867051520902168576', 'full_text': "Oh my this spooked me up. We only rate dogs, not happy ghosts. Please send dogs only. It's a very simple premise. Thank you... 13/10 https://t.co/M5Rz0R8SIQ", 'truncated': False, 'display_text_range': [0, 132], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 867051512509460480, 'id_str': '867051512509460480', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg', 'url': 'https://t.co/M5Rz0R8SIQ', 'display_url': 'pic.twitter.com/M5Rz0R8SIQ', 'expanded_url': 'https://twitter.com/dog_rates/status/867051520902168576/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 1199, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1601, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 867051512509460480, 'id_str': '867051512509460480', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg', 'url': 'https://t.co/M5Rz0R8SIQ', 'display_url': 'pic.twitter.com/M5Rz0R8SIQ', 'expanded_url': 'https://twitter.com/dog_rates/status/867051520902168576/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 1199, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1601, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6753, 'favorite_count': 28597, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon May 22 18:21:28 +0000 2017', 'id': 866720684873056260, 'id_str': '866720684873056260', 'full_text': 'He was providing for his family 13/10 how dare you https://t.co/Q8mVwWN3f4', 'truncated': False, 'display_text_range': [0, 50], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/Q8mVwWN3f4', 'expanded_url': 'https://twitter.com/nbcnews/status/866458718883467265', 'display_url': 'twitter.com/nbcnews/status…', 'indices': [51, 74]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'quoted_status_id': 866458718883467265, 'quoted_status_id_str': '866458718883467265', 'quoted_status_permalink': {'url': 'https://t.co/Q8mVwWN3f4', 'expanded': 'https://twitter.com/nbcnews/status/866458718883467265', 'display': 'twitter.com/nbcnews/status…'}, 'quoted_status': {'created_at': 'Mon May 22 01:00:31 +0000 2017', 'id': 866458718883467265, 'id_str': '866458718883467265', 'full_text': 'Suspect collared after caught on camera stealing bread from a dollar store https://t.co/RsvMCDUjTa https://t.co/N5SGZnH2W7', 'truncated': False, 'display_text_range': [0, 98], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/RsvMCDUjTa', 'expanded_url': 'http://nbcnews.to/2qMnifN', 'display_url': 'nbcnews.to/2qMnifN', 'indices': [75, 98]}], 'media': [{'id': 866458715725213696, 'id_str': '866458715725213696', 'indices': [99, 122], 'media_url': 'http://pbs.twimg.com/media/DAZHnHtXsAAozgE.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAZHnHtXsAAozgE.jpg', 'url': 'https://t.co/N5SGZnH2W7', 'display_url': 'pic.twitter.com/N5SGZnH2W7', 'expanded_url': 'https://twitter.com/NBCNews/status/866458718883467265/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}, 'large': {'w': 1920, 'h': 1080, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 866458715725213696, 'id_str': '866458715725213696', 'indices': [99, 122], 'media_url': 'http://pbs.twimg.com/media/DAZHnHtXsAAozgE.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAZHnHtXsAAozgE.jpg', 'url': 'https://t.co/N5SGZnH2W7', 'display_url': 'pic.twitter.com/N5SGZnH2W7', 'expanded_url': 'https://twitter.com/NBCNews/status/866458718883467265/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}, 'large': {'w': 1920, 'h': 1080, 'resize': 'fit'}}}]}, 'source': '<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 14173315, 'id_str': '14173315', 'name': 'NBC News', 'screen_name': 'NBCNews', 'location': 'New York, NY', 'description': 'News updates from around the 🌎, all day, every day.', 'url': 'https://t.co/2f2PctyT1n', 'entities': {'url': {'urls': [{'url': 'https://t.co/2f2PctyT1n', 'expanded_url': 'http://NBCNews.com', 'display_url': 'NBCNews.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9261392, 'friends_count': 1859, 'listed_count': 51376, 'created_at': 'Tue Mar 18 23:19:17 +0000 2008', 'favourites_count': 773, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 349137, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '062131', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': True, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1338497918387572736/DXHbTEJG_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1338497918387572736/DXHbTEJG_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14173315/1662676823', 'profile_link_color': '5172A0', 'profile_sidebar_border_color': 'FFFFFF', 'profile_sidebar_fill_color': 'FFFFFF', 'profile_text_color': '000000', 'profile_use_background_image': True, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 336, 'favorite_count': 1228, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'retweet_count': 4114, 'favorite_count': 17789, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon May 22 16:06:55 +0000 2017', 'id': 866686824827068416, 'id_str': '866686824827068416', 'full_text': "This is Lili. She can't believe you betrayed her with bath time. Never looking you in the eye again. 12/10 would puppologize profusely https://t.co/9b9J46E86Z", 'truncated': False, 'display_text_range': [0, 134], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 866686816879087618, 'id_str': '866686816879087618', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg', 'url': 'https://t.co/9b9J46E86Z', 'display_url': 'pic.twitter.com/9b9J46E86Z', 'expanded_url': 'https://twitter.com/dog_rates/status/866686824827068416/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 901, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 866686816879087618, 'id_str': '866686816879087618', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg', 'url': 'https://t.co/9b9J46E86Z', 'display_url': 'pic.twitter.com/9b9J46E86Z', 'expanded_url': 'https://twitter.com/dog_rates/status/866686824827068416/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 901, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}, {'id': 866686816874881024, 'id_str': '866686816874881024', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/DAcXEWtXYAA1RBg.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAcXEWtXYAA1RBg.jpg', 'url': 'https://t.co/9b9J46E86Z', 'display_url': 'pic.twitter.com/9b9J46E86Z', 'expanded_url': 'https://twitter.com/dog_rates/status/866686824827068416/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 901, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 676, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2953, 'favorite_count': 17056, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon May 22 00:28:40 +0000 2017', 'id': 866450705531457537, 'id_str': '866450705531457537', 'full_text': 'This is Jamesy. He gives a kiss to every other pupper he sees on his walk. 13/10 such passion, much tender https://t.co/wk7TfysWHr', 'truncated': False, 'display_text_range': [0, 106], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 866450698984185856, 'id_str': '866450698984185856', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/DAZAUfBXYAAHtni.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAZAUfBXYAAHtni.jpg', 'url': 'https://t.co/wk7TfysWHr', 'display_url': 'pic.twitter.com/wk7TfysWHr', 'expanded_url': 'https://twitter.com/dog_rates/status/866450705531457537/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 884, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1179, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 501, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 866450698984185856, 'id_str': '866450698984185856', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/DAZAUfBXYAAHtni.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAZAUfBXYAAHtni.jpg', 'url': 'https://t.co/wk7TfysWHr', 'display_url': 'pic.twitter.com/wk7TfysWHr', 'expanded_url': 'https://twitter.com/dog_rates/status/866450705531457537/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 884, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1179, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 501, 'h': 680, 'resize': 'fit'}}}, {'id': 866450698984189952, 'id_str': '866450698984189952', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg', 'url': 'https://t.co/wk7TfysWHr', 'display_url': 'pic.twitter.com/wk7TfysWHr', 'expanded_url': 'https://twitter.com/dog_rates/status/866450705531457537/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 980, 'resize': 'fit'}, 'small': {'w': 680, 'h': 555, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1307, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 30040, 'favorite_count': 108434, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun May 21 16:48:45 +0000 2017', 'id': 866334964761202691, 'id_str': '866334964761202691', 'full_text': "This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.co/W86h5dgR6c", 'truncated': False, 'display_text_range': [0, 112], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 866334954229301248, 'id_str': '866334954229301248', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg', 'url': 'https://t.co/W86h5dgR6c', 'display_url': 'pic.twitter.com/W86h5dgR6c', 'expanded_url': 'https://twitter.com/dog_rates/status/866334964761202691/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 866334954229301248, 'id_str': '866334954229301248', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg', 'url': 'https://t.co/W86h5dgR6c', 'display_url': 'pic.twitter.com/W86h5dgR6c', 'expanded_url': 'https://twitter.com/dog_rates/status/866334964761202691/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 866334954225115140, 'id_str': '866334954225115140', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/DAXXDQMXoAQa0no.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAXXDQMXoAQa0no.jpg', 'url': 'https://t.co/W86h5dgR6c', 'display_url': 'pic.twitter.com/W86h5dgR6c', 'expanded_url': 'https://twitter.com/dog_rates/status/866334964761202691/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 12155, 'favorite_count': 46402, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun May 21 00:53:21 +0000 2017', 'id': 866094527597207552, 'id_str': '866094527597207552', 'full_text': 'RT @dog_rates: Here\'s a pupper before and after being asked "who\'s a good girl?" Unsure as h*ck. 12/10 hint hint it\'s you https://t.co/ORiK…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sat Mar 04 00:21:08 +0000 2017', 'id': 837820167694528512, 'id_str': '837820167694528512', 'full_text': 'Here\'s a pupper before and after being asked "who\'s a good girl?" Unsure as h*ck. 12/10 hint hint it\'s you https://t.co/ORiK6jlgdH', 'truncated': False, 'display_text_range': [0, 106], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 837820156113911808, 'id_str': '837820156113911808', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg', 'url': 'https://t.co/ORiK6jlgdH', 'display_url': 'pic.twitter.com/ORiK6jlgdH', 'expanded_url': 'https://twitter.com/dog_rates/status/837820167694528512/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 489, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 863, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1472, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 837820156113911808, 'id_str': '837820156113911808', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg', 'url': 'https://t.co/ORiK6jlgdH', 'display_url': 'pic.twitter.com/ORiK6jlgdH', 'expanded_url': 'https://twitter.com/dog_rates/status/837820167694528512/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 489, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 863, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1472, 'h': 2048, 'resize': 'fit'}}}, {'id': 837820156109676544, 'id_str': '837820156109676544', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C6CI_jaUYAAYO0H.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6CI_jaUYAAYO0H.jpg', 'url': 'https://t.co/ORiK6jlgdH', 'display_url': 'pic.twitter.com/ORiK6jlgdH', 'expanded_url': 'https://twitter.com/dog_rates/status/837820167694528512/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1388, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 813, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 461, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7133, 'favorite_count': 31749, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 7133, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Fri May 19 23:57:46 +0000 2017', 'id': 865718153858494464, 'id_str': '865718153858494464', 'full_text': "Meet Boomer. He's just checking pup on you. Hopes you had a good day. If not, he hopes he made it better. 13/10 extremely good boy https://t.co/pozUoHLkGg", 'truncated': False, 'display_text_range': [0, 130], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 865718147889979392, 'id_str': '865718147889979392', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg', 'url': 'https://t.co/pozUoHLkGg', 'display_url': 'pic.twitter.com/pozUoHLkGg', 'expanded_url': 'https://twitter.com/dog_rates/status/865718153858494464/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 900, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 865718147889979392, 'id_str': '865718147889979392', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg', 'url': 'https://t.co/pozUoHLkGg', 'display_url': 'pic.twitter.com/pozUoHLkGg', 'expanded_url': 'https://twitter.com/dog_rates/status/865718153858494464/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 900, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4813, 'favorite_count': 22848, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri May 19 00:12:11 +0000 2017', 'id': 865359393868664832, 'id_str': '865359393868664832', 'full_text': "This is Sammy. Her tongue ejects without warning sometimes. It's a serious condition. Needs a hefty dose from a BlepiPen. 13/10 https://t.co/g20EmqK7vc", 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 865359385135955968, 'id_str': '865359385135955968', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/DAJfxqIUQAA7v_D.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAJfxqIUQAA7v_D.jpg', 'url': 'https://t.co/g20EmqK7vc', 'display_url': 'pic.twitter.com/g20EmqK7vc', 'expanded_url': 'https://twitter.com/dog_rates/status/865359393868664832/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 865359385135955968, 'id_str': '865359385135955968', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/DAJfxqIUQAA7v_D.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAJfxqIUQAA7v_D.jpg', 'url': 'https://t.co/g20EmqK7vc', 'display_url': 'pic.twitter.com/g20EmqK7vc', 'expanded_url': 'https://twitter.com/dog_rates/status/865359393868664832/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 865359385127657472, 'id_str': '865359385127657472', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg', 'url': 'https://t.co/g20EmqK7vc', 'display_url': 'pic.twitter.com/g20EmqK7vc', 'expanded_url': 'https://twitter.com/dog_rates/status/865359393868664832/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4269, 'favorite_count': 23500, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu May 18 00:50:50 +0000 2017', 'id': 865006731092295680, 'id_str': '865006731092295680', 'full_text': 'This is Nelly. He really hopes you like his Hawaiian shirt. He already tore the tags off. 13/10 h*ck of a puppurchase https://t.co/LbkG5CiM7o', 'truncated': False, 'display_text_range': [0, 117], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 865006724092010496, 'id_str': '865006724092010496', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg', 'url': 'https://t.co/LbkG5CiM7o', 'display_url': 'pic.twitter.com/LbkG5CiM7o', 'expanded_url': 'https://twitter.com/dog_rates/status/865006731092295680/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1402, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 596, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1052, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 865006724092010496, 'id_str': '865006724092010496', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg', 'url': 'https://t.co/LbkG5CiM7o', 'display_url': 'pic.twitter.com/LbkG5CiM7o', 'expanded_url': 'https://twitter.com/dog_rates/status/865006731092295680/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1402, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 596, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1052, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6631, 'favorite_count': 24947, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed May 17 16:00:15 +0000 2017', 'id': 864873206498414592, 'id_str': '864873206498414592', 'full_text': "We only rate dogs. Please don't send in Jesus. We're trying to remain professional and legitimate. Thank you... 14/10 https://t.co/wr3xsjeCIR", 'truncated': False, 'display_text_range': [0, 117], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 864873202618687489, 'id_str': '864873202618687489', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/DAClmHHXYAECTmT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAClmHHXYAECTmT.jpg', 'url': 'https://t.co/wr3xsjeCIR', 'display_url': 'pic.twitter.com/wr3xsjeCIR', 'expanded_url': 'https://twitter.com/dog_rates/status/864873206498414592/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 864873202618687489, 'id_str': '864873202618687489', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/DAClmHHXYAECTmT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAClmHHXYAECTmT.jpg', 'url': 'https://t.co/wr3xsjeCIR', 'display_url': 'pic.twitter.com/wr3xsjeCIR', 'expanded_url': 'https://twitter.com/dog_rates/status/864873206498414592/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}}}, {'id': 864873202740326400, 'id_str': '864873202740326400', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg', 'url': 'https://t.co/wr3xsjeCIR', 'display_url': 'pic.twitter.com/wr3xsjeCIR', 'expanded_url': 'https://twitter.com/dog_rates/status/864873206498414592/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 899, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 674, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7471, 'favorite_count': 28731, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue May 16 00:41:21 +0000 2017', 'id': 864279568663928832, 'id_str': '864279568663928832', 'full_text': "This is Meatball. He doing what's known in the industry as a mid-strut mlem. H*ckin fancy boy. 12/10 I'd do anything for Meatball https://t.co/S2HdmFFPck", 'truncated': False, 'display_text_range': [0, 129], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 864279556340957184, 'id_str': '864279556340957184', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg', 'url': 'https://t.co/S2HdmFFPck', 'display_url': 'pic.twitter.com/S2HdmFFPck', 'expanded_url': 'https://twitter.com/dog_rates/status/864279568663928832/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 1008, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 571, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1344, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 864279556340957184, 'id_str': '864279556340957184', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg', 'url': 'https://t.co/S2HdmFFPck', 'display_url': 'pic.twitter.com/S2HdmFFPck', 'expanded_url': 'https://twitter.com/dog_rates/status/864279568663928832/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 1008, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 571, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1344, 'resize': 'fit'}}}, {'id': 864279556412252160, 'id_str': '864279556412252160', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/C_6JrWqVoAAas0l.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_6JrWqVoAAas0l.jpg', 'url': 'https://t.co/S2HdmFFPck', 'display_url': 'pic.twitter.com/S2HdmFFPck', 'expanded_url': 'https://twitter.com/dog_rates/status/864279568663928832/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1600, 'h': 1107, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 470, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 830, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2569, 'favorite_count': 13023, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon May 15 19:14:50 +0000 2017', 'id': 864197398364647424, 'id_str': '864197398364647424', 'full_text': 'This is Paisley. She ate a flower just to prove she could. Savage af. 13/10 would pet so well https://t.co/cPq9fYvkzr', 'truncated': False, 'display_text_range': [0, 93], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 864197387966791680, 'id_str': '864197387966791680', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/C_4-8hWUwAAAqoP.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_4-8hWUwAAAqoP.jpg', 'url': 'https://t.co/cPq9fYvkzr', 'display_url': 'pic.twitter.com/cPq9fYvkzr', 'expanded_url': 'https://twitter.com/dog_rates/status/864197398364647424/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 864197387966791680, 'id_str': '864197387966791680', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/C_4-8hWUwAAAqoP.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_4-8hWUwAAAqoP.jpg', 'url': 'https://t.co/cPq9fYvkzr', 'display_url': 'pic.twitter.com/cPq9fYvkzr', 'expanded_url': 'https://twitter.com/dog_rates/status/864197398364647424/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}, {'id': 864197387966742528, 'id_str': '864197387966742528', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/C_4-8hWUAAAirXb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_4-8hWUAAAirXb.jpg', 'url': 'https://t.co/cPq9fYvkzr', 'display_url': 'pic.twitter.com/cPq9fYvkzr', 'expanded_url': 'https://twitter.com/dog_rates/status/864197398364647424/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}, {'id': 864197388201738240, 'id_str': '864197388201738240', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/C_4-8iOVwAAt17y.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_4-8iOVwAAt17y.jpg', 'url': 'https://t.co/cPq9fYvkzr', 'display_url': 'pic.twitter.com/cPq9fYvkzr', 'expanded_url': 'https://twitter.com/dog_rates/status/864197398364647424/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 864197388205936640, 'id_str': '864197388205936640', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg', 'url': 'https://t.co/cPq9fYvkzr', 'display_url': 'pic.twitter.com/cPq9fYvkzr', 'expanded_url': 'https://twitter.com/dog_rates/status/864197398364647424/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7550, 'favorite_count': 26536, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon May 15 00:02:33 +0000 2017', 'id': 863907417377173506, 'id_str': '863907417377173506', 'full_text': "This is Albus. He's quite impressive at hide and seek. Knows he's been found this time. 13/10 usually elusive as h*ck https://t.co/ht47njyZ64", 'truncated': False, 'display_text_range': [0, 117], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 863907404156518400, 'id_str': '863907404156518400', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg', 'url': 'https://t.co/ht47njyZ64', 'display_url': 'pic.twitter.com/ht47njyZ64', 'expanded_url': 'https://twitter.com/dog_rates/status/863907417377173506/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 863907404156518400, 'id_str': '863907404156518400', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg', 'url': 'https://t.co/ht47njyZ64', 'display_url': 'pic.twitter.com/ht47njyZ64', 'expanded_url': 'https://twitter.com/dog_rates/status/863907417377173506/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 863907404156616704, 'id_str': '863907404156616704', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/C_03NPeVwAAbAtl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_03NPeVwAAbAtl.jpg', 'url': 'https://t.co/ht47njyZ64', 'display_url': 'pic.twitter.com/ht47njyZ64', 'expanded_url': 'https://twitter.com/dog_rates/status/863907417377173506/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364486, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3576, 'favorite_count': 18365, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun May 14 00:34:33 +0000 2017', 'id': 863553081350529029, 'id_str': '863553081350529029', 'full_text': "This is Neptune. He's a backpup vocalist for the Dixie Chicks. 13/10 (vid by @AmiWinehouse) https://t.co/tordvmaaop", 'truncated': False, 'display_text_range': [0, 91], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'AmiWinehouse', 'name': 'Ami Lee Winehouse', 'id': 1165500693492297728, 'id_str': '1165500693492297728', 'indices': [77, 90]}], 'urls': [], 'media': [{'id': 863553036815355904, 'id_str': '863553036815355904', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/863553036815355904/pu/img/B6Dos-XOD8l82tK7.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/863553036815355904/pu/img/B6Dos-XOD8l82tK7.jpg', 'url': 'https://t.co/tordvmaaop', 'display_url': 'pic.twitter.com/tordvmaaop', 'expanded_url': 'https://twitter.com/dog_rates/status/863553081350529029/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 320, 'h': 568, 'resize': 'fit'}, 'small': {'w': 320, 'h': 568, 'resize': 'fit'}, 'medium': {'w': 320, 'h': 568, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 863553036815355904, 'id_str': '863553036815355904', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/863553036815355904/pu/img/B6Dos-XOD8l82tK7.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/863553036815355904/pu/img/B6Dos-XOD8l82tK7.jpg', 'url': 'https://t.co/tordvmaaop', 'display_url': 'pic.twitter.com/tordvmaaop', 'expanded_url': 'https://twitter.com/dog_rates/status/863553081350529029/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 320, 'h': 568, 'resize': 'fit'}, 'small': {'w': 320, 'h': 568, 'resize': 'fit'}, 'medium': {'w': 320, 'h': 568, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [40, 71], 'duration_millis': 6767, 'variants': [{'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/863553036815355904/pu/pl/8i2DX1sl8nRngzYc.m3u8'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/863553036815355904/pu/vid/180x320/BlYzEyppcBwS1Q5W.mp4'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364487, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3610, 'favorite_count': 13621, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat May 13 19:11:30 +0000 2017', 'id': 863471782782697472, 'id_str': '863471782782697472', 'full_text': "RT @dog_rates: Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364487, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Fri May 12 16:05:02 +0000 2017', 'id': 863062471531167744, 'id_str': '863062471531167744', 'full_text': "Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://t.co/MOBkQnyHib https://t.co/EsOB4rLEKt", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/MOBkQnyHib', 'expanded_url': 'https://www.gofundme.com/helpquinny', 'display_url': 'gofundme.com/helpquinny', 'indices': [116, 139]}], 'media': [{'id': 863062462383378432, 'id_str': '863062462383378432', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C_o2vKFV0AAcq9j.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_o2vKFV0AAcq9j.jpg', 'url': 'https://t.co/EsOB4rLEKt', 'display_url': 'pic.twitter.com/EsOB4rLEKt', 'expanded_url': 'https://twitter.com/dog_rates/status/863062471531167744/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 800, 'h': 533, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'large': {'w': 800, 'h': 533, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 863062462383378432, 'id_str': '863062462383378432', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C_o2vKFV0AAcq9j.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_o2vKFV0AAcq9j.jpg', 'url': 'https://t.co/EsOB4rLEKt', 'display_url': 'pic.twitter.com/EsOB4rLEKt', 'expanded_url': 'https://twitter.com/dog_rates/status/863062471531167744/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 800, 'h': 533, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'large': {'w': 800, 'h': 533, 'resize': 'fit'}}}, {'id': 863062462370725888, 'id_str': '863062462370725888', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg', 'url': 'https://t.co/EsOB4rLEKt', 'display_url': 'pic.twitter.com/EsOB4rLEKt', 'expanded_url': 'https://twitter.com/dog_rates/status/863062471531167744/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1000, 'h': 750, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1000, 'h': 750, 'resize': 'fit'}}}, {'id': 863062462370689024, 'id_str': '863062462370689024', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C_o2vKCUMAAewwp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_o2vKCUMAAewwp.jpg', 'url': 'https://t.co/EsOB4rLEKt', 'display_url': 'pic.twitter.com/EsOB4rLEKt', 'expanded_url': 'https://twitter.com/dog_rates/status/863062471531167744/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1000, 'h': 750, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1000, 'h': 750, 'resize': 'fit'}}}, {'id': 863062462379065344, 'id_str': '863062462379065344', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C_o2vKEUAAA_pfA.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_o2vKEUAAA_pfA.jpg', 'url': 'https://t.co/EsOB4rLEKt', 'display_url': 'pic.twitter.com/EsOB4rLEKt', 'expanded_url': 'https://twitter.com/dog_rates/status/863062471531167744/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1000, 'h': 750, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1000, 'h': 750, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364487, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2083, 'favorite_count': 7495, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 2083, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sat May 13 16:33:49 +0000 2017', 'id': 863432100342583297, 'id_str': '863432100342583297', 'full_text': "This is Belle. She's never been more pupset. Encountered the worst imaginable type of zone. 12/10 would do anything to cheer pup https://t.co/fGQUzR8w3H", 'truncated': False, 'display_text_range': [0, 128], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 863432092616491008, 'id_str': '863432092616491008', 'indices': [129, 152], 'media_url': 'http://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg', 'url': 'https://t.co/fGQUzR8w3H', 'display_url': 'pic.twitter.com/fGQUzR8w3H', 'expanded_url': 'https://twitter.com/dog_rates/status/863432100342583297/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 863432092616491008, 'id_str': '863432092616491008', 'indices': [129, 152], 'media_url': 'http://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg', 'url': 'https://t.co/fGQUzR8w3H', 'display_url': 'pic.twitter.com/fGQUzR8w3H', 'expanded_url': 'https://twitter.com/dog_rates/status/863432100342583297/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364487, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4542, 'favorite_count': 21216, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat May 13 16:15:35 +0000 2017', 'id': 863427515083354112, 'id_str': '863427515083354112', 'full_text': "@Jack_Septic_Eye I'd need a few more pics to polish a full analysis, but based on the good boy content above I'm leaning towards 12/10", 'truncated': False, 'display_text_range': [17, 134], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 863425645568774144, 'in_reply_to_status_id_str': '863425645568774144', 'in_reply_to_user_id': 77596200, 'in_reply_to_user_id_str': '77596200', 'in_reply_to_screen_name': 'Jacksepticeye', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364487, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 80, 'favorite_count': 1956, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Fri May 12 17:12:53 +0000 2017', 'id': 863079547188785154, 'id_str': '863079547188785154', 'full_text': 'Ladies and gentlemen... I found Pipsy. He may have changed his name to Pablo, but he never changed his love for the sea. Pupgraded to 14/10 https://t.co/lVU5GyNFen', 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 863079538779013120, 'id_str': '863079538779013120', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg', 'url': 'https://t.co/lVU5GyNFen', 'display_url': 'pic.twitter.com/lVU5GyNFen', 'expanded_url': 'https://twitter.com/dog_rates/status/863079547188785154/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 492, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 749, 'h': 1035, 'resize': 'fit'}, 'large': {'w': 749, 'h': 1035, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 863079538779013120, 'id_str': '863079538779013120', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg', 'url': 'https://t.co/lVU5GyNFen', 'display_url': 'pic.twitter.com/lVU5GyNFen', 'expanded_url': 'https://twitter.com/dog_rates/status/863079547188785154/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 492, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 749, 'h': 1035, 'resize': 'fit'}, 'large': {'w': 749, 'h': 1035, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 667152164079423490, 'in_reply_to_status_id_str': '667152164079423490', 'in_reply_to_user_id': 4196983835, 'in_reply_to_user_id_str': '4196983835', 'in_reply_to_screen_name': 'dog_rates', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364487, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 949, 'favorite_count': 7873, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri May 12 16:05:02 +0000 2017', 'id': 863062471531167744, 'id_str': '863062471531167744', 'full_text': "Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://t.co/MOBkQnyHib https://t.co/EsOB4rLEKt", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/MOBkQnyHib', 'expanded_url': 'https://www.gofundme.com/helpquinny', 'display_url': 'gofundme.com/helpquinny', 'indices': [116, 139]}], 'media': [{'id': 863062462383378432, 'id_str': '863062462383378432', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C_o2vKFV0AAcq9j.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_o2vKFV0AAcq9j.jpg', 'url': 'https://t.co/EsOB4rLEKt', 'display_url': 'pic.twitter.com/EsOB4rLEKt', 'expanded_url': 'https://twitter.com/dog_rates/status/863062471531167744/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 800, 'h': 533, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'large': {'w': 800, 'h': 533, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 863062462383378432, 'id_str': '863062462383378432', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C_o2vKFV0AAcq9j.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_o2vKFV0AAcq9j.jpg', 'url': 'https://t.co/EsOB4rLEKt', 'display_url': 'pic.twitter.com/EsOB4rLEKt', 'expanded_url': 'https://twitter.com/dog_rates/status/863062471531167744/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 800, 'h': 533, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'large': {'w': 800, 'h': 533, 'resize': 'fit'}}}, {'id': 863062462370725888, 'id_str': '863062462370725888', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg', 'url': 'https://t.co/EsOB4rLEKt', 'display_url': 'pic.twitter.com/EsOB4rLEKt', 'expanded_url': 'https://twitter.com/dog_rates/status/863062471531167744/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1000, 'h': 750, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1000, 'h': 750, 'resize': 'fit'}}}, {'id': 863062462370689024, 'id_str': '863062462370689024', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C_o2vKCUMAAewwp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_o2vKCUMAAewwp.jpg', 'url': 'https://t.co/EsOB4rLEKt', 'display_url': 'pic.twitter.com/EsOB4rLEKt', 'expanded_url': 'https://twitter.com/dog_rates/status/863062471531167744/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1000, 'h': 750, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1000, 'h': 750, 'resize': 'fit'}}}, {'id': 863062462379065344, 'id_str': '863062462379065344', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C_o2vKEUAAA_pfA.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_o2vKEUAAA_pfA.jpg', 'url': 'https://t.co/EsOB4rLEKt', 'display_url': 'pic.twitter.com/EsOB4rLEKt', 'expanded_url': 'https://twitter.com/dog_rates/status/863062471531167744/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1000, 'h': 750, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1000, 'h': 750, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364487, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2083, 'favorite_count': 7495, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri May 12 00:46:44 +0000 2017', 'id': 862831371563274240, 'id_str': '862831371563274240', 'full_text': "This is Zooey. She's the world's biggest fan of illiterate delivery people. 13/10 not your fault they don't listen, Zooey https://t.co/ixOFQ1tfqE", 'truncated': False, 'display_text_range': [0, 121], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 862831346963447808, 'id_str': '862831346963447808', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C_lkieDUAAAJveS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_lkieDUAAAJveS.jpg', 'url': 'https://t.co/ixOFQ1tfqE', 'display_url': 'pic.twitter.com/ixOFQ1tfqE', 'expanded_url': 'https://twitter.com/dog_rates/status/862831371563274240/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 483, 'resize': 'fit'}, 'large': {'w': 1599, 'h': 644, 'resize': 'fit'}, 'small': {'w': 680, 'h': 274, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 862831346963447808, 'id_str': '862831346963447808', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C_lkieDUAAAJveS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_lkieDUAAAJveS.jpg', 'url': 'https://t.co/ixOFQ1tfqE', 'display_url': 'pic.twitter.com/ixOFQ1tfqE', 'expanded_url': 'https://twitter.com/dog_rates/status/862831371563274240/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 483, 'resize': 'fit'}, 'large': {'w': 1599, 'h': 644, 'resize': 'fit'}, 'small': {'w': 680, 'h': 274, 'resize': 'fit'}}}, {'id': 862831347076808704, 'id_str': '862831347076808704', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg', 'url': 'https://t.co/ixOFQ1tfqE', 'display_url': 'pic.twitter.com/ixOFQ1tfqE', 'expanded_url': 'https://twitter.com/dog_rates/status/862831371563274240/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364487, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4442, 'favorite_count': 17172, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu May 11 17:34:13 +0000 2017', 'id': 862722525377298433, 'id_str': '862722525377298433', 'full_text': "This is Dave. He passed the h*ck out. It's barely the afternoon on a Thursday, Dave. Get it together. Still 11/10 would boop mid-snooze https://t.co/Eme9Uar6v2", 'truncated': False, 'display_text_range': [0, 135], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 862722516858445824, 'id_str': '862722516858445824', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg', 'url': 'https://t.co/Eme9Uar6v2', 'display_url': 'pic.twitter.com/Eme9Uar6v2', 'expanded_url': 'https://twitter.com/dog_rates/status/862722525377298433/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 862722516858445824, 'id_str': '862722516858445824', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg', 'url': 'https://t.co/Eme9Uar6v2', 'display_url': 'pic.twitter.com/Eme9Uar6v2', 'expanded_url': 'https://twitter.com/dog_rates/status/862722525377298433/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364487, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3072, 'favorite_count': 15280, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu May 11 00:01:27 +0000 2017', 'id': 862457590147678208, 'id_str': '862457590147678208', 'full_text': 'This is Jersey. He likes to watch movies, but only if you watch with him. Enjoys horror films like The Bababork and H*ckraiser. 13/10 https://t.co/jvSNASweNb', 'truncated': False, 'display_text_range': [0, 133], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 862457580722860032, 'id_str': '862457580722860032', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg', 'url': 'https://t.co/jvSNASweNb', 'display_url': 'pic.twitter.com/jvSNASweNb', 'expanded_url': 'https://twitter.com/dog_rates/status/862457590147678208/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 898, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1197, 'resize': 'fit'}, 'small': {'w': 680, 'h': 509, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 862457580722860032, 'id_str': '862457580722860032', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg', 'url': 'https://t.co/jvSNASweNb', 'display_url': 'pic.twitter.com/jvSNASweNb', 'expanded_url': 'https://twitter.com/dog_rates/status/862457590147678208/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 898, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1197, 'resize': 'fit'}, 'small': {'w': 680, 'h': 509, 'resize': 'fit'}}}, {'id': 862457580718772225, 'id_str': '862457580718772225', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C_gQmaSV0AEJl6m.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_gQmaSV0AEJl6m.jpg', 'url': 'https://t.co/jvSNASweNb', 'display_url': 'pic.twitter.com/jvSNASweNb', 'expanded_url': 'https://twitter.com/dog_rates/status/862457590147678208/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}, {'id': 862457580722855936, 'id_str': '862457580722855936', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C_gQmaTUIAAv9oH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_gQmaTUIAAv9oH.jpg', 'url': 'https://t.co/jvSNASweNb', 'display_url': 'pic.twitter.com/jvSNASweNb', 'expanded_url': 'https://twitter.com/dog_rates/status/862457590147678208/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364487, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4229, 'favorite_count': 18205, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed May 10 00:08:34 +0000 2017', 'id': 862096992088072192, 'id_str': '862096992088072192', 'full_text': "We only rate dogs. Please don't send perfectly toasted marshmallows attempting to drive. Thank you... 13/10 https://t.co/nvZyyrp0kd", 'truncated': False, 'display_text_range': [0, 107], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 862096984366354432, 'id_str': '862096984366354432', 'indices': [108, 131], 'media_url': 'http://pbs.twimg.com/media/C_bIo8MXkAA3xBK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_bIo8MXkAA3xBK.jpg', 'url': 'https://t.co/nvZyyrp0kd', 'display_url': 'pic.twitter.com/nvZyyrp0kd', 'expanded_url': 'https://twitter.com/dog_rates/status/862096992088072192/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 901, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 862096984366354432, 'id_str': '862096984366354432', 'indices': [108, 131], 'media_url': 'http://pbs.twimg.com/media/C_bIo8MXkAA3xBK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_bIo8MXkAA3xBK.jpg', 'url': 'https://t.co/nvZyyrp0kd', 'display_url': 'pic.twitter.com/nvZyyrp0kd', 'expanded_url': 'https://twitter.com/dog_rates/status/862096992088072192/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 901, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}, {'id': 862096984114683904, 'id_str': '862096984114683904', 'indices': [108, 131], 'media_url': 'http://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg', 'url': 'https://t.co/nvZyyrp0kd', 'display_url': 'pic.twitter.com/nvZyyrp0kd', 'expanded_url': 'https://twitter.com/dog_rates/status/862096992088072192/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 901, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364487, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 19891, 'favorite_count': 66027, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon May 08 00:54:59 +0000 2017', 'id': 861383897657036800, 'id_str': '861383897657036800', 'full_text': "This is Hobbes. He's never seen bubbles before. 13/10 deep breaths buddy https://t.co/QFRlbZw4Z1", 'truncated': False, 'display_text_range': [0, 72], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 861383888685236224, 'id_str': '861383888685236224', 'indices': [73, 96], 'media_url': 'http://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg', 'url': 'https://t.co/QFRlbZw4Z1', 'display_url': 'pic.twitter.com/QFRlbZw4Z1', 'expanded_url': 'https://twitter.com/dog_rates/status/861383897657036800/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 669, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1181, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1575, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 861383888685236224, 'id_str': '861383888685236224', 'indices': [73, 96], 'media_url': 'http://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg', 'url': 'https://t.co/QFRlbZw4Z1', 'display_url': 'pic.twitter.com/QFRlbZw4Z1', 'expanded_url': 'https://twitter.com/dog_rates/status/861383897657036800/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 669, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1181, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1575, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9224, 'favorite_count': 32157, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun May 07 18:36:02 +0000 2017', 'id': 861288531465048066, 'id_str': '861288531465048066', 'full_text': "HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SAY. IT'S. H*CKIN. RIDICULOUS. THAT. DOGS. CAN'T VOTE. ABSOLUTE. CODSWALLUP. THANK. YOU. 13/10 https://t.co/SqKJPwbQ2g", 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 861288473281437696, 'id_str': '861288473281437696', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/861288473281437696/pu/img/RERGmRgPyaaaB-tB.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/861288473281437696/pu/img/RERGmRgPyaaaB-tB.jpg', 'url': 'https://t.co/SqKJPwbQ2g', 'display_url': 'pic.twitter.com/SqKJPwbQ2g', 'expanded_url': 'https://twitter.com/dog_rates/status/861288531465048066/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'large': {'w': 640, 'h': 800, 'resize': 'fit'}, 'medium': {'w': 640, 'h': 800, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 861288473281437696, 'id_str': '861288473281437696', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/861288473281437696/pu/img/RERGmRgPyaaaB-tB.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/861288473281437696/pu/img/RERGmRgPyaaaB-tB.jpg', 'url': 'https://t.co/SqKJPwbQ2g', 'display_url': 'pic.twitter.com/SqKJPwbQ2g', 'expanded_url': 'https://twitter.com/dog_rates/status/861288531465048066/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'large': {'w': 640, 'h': 800, 'resize': 'fit'}, 'medium': {'w': 640, 'h': 800, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [4, 5], 'duration_millis': 9510, 'variants': [{'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/861288473281437696/pu/vid/256x320/MvLmzpEYWG6yIUGZ.mp4'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/861288473281437696/pu/vid/512x640/WxbN1XQdYjoD0gMe.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/861288473281437696/pu/pl/YcunL9iOx4Z0BdPt.m3u8'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3573, 'favorite_count': 15294, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat May 06 23:49:50 +0000 2017', 'id': 861005113778896900, 'id_str': '861005113778896900', 'full_text': 'This is Burt. He thinks your thesis statement is comically underdeveloped. 12/10 intellectual af https://t.co/jH6EN9cEn6', 'truncated': False, 'display_text_range': [0, 96], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 861005103205031937, 'id_str': '861005103205031937', 'indices': [97, 120], 'media_url': 'http://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg', 'url': 'https://t.co/jH6EN9cEn6', 'display_url': 'pic.twitter.com/jH6EN9cEn6', 'expanded_url': 'https://twitter.com/dog_rates/status/861005113778896900/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 861005103205031937, 'id_str': '861005103205031937', 'indices': [97, 120], 'media_url': 'http://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg', 'url': 'https://t.co/jH6EN9cEn6', 'display_url': 'pic.twitter.com/jH6EN9cEn6', 'expanded_url': 'https://twitter.com/dog_rates/status/861005113778896900/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3318, 'favorite_count': 14929, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat May 06 22:16:42 +0000 2017', 'id': 860981674716409858, 'id_str': '860981674716409858', 'full_text': "RT @dog_rates: Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Fri May 05 18:36:06 +0000 2017', 'id': 860563773140209665, 'id_str': '860563773140209665', 'full_text': "Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t.co/qZdSdzm08p https://t.co/oDIQ1KkdPt", 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/qZdSdzm08p', 'expanded_url': 'https://www.gofundme.com/help-lorenzo-beat-cancer', 'display_url': 'gofundme.com/help-lorenzo-b…', 'indices': [115, 138]}], 'media': [{'id': 860563764940226560, 'id_str': '860563764940226560', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg', 'url': 'https://t.co/oDIQ1KkdPt', 'display_url': 'pic.twitter.com/oDIQ1KkdPt', 'expanded_url': 'https://twitter.com/dog_rates/status/860563773140209665/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 596, 'h': 596, 'resize': 'fit'}, 'medium': {'w': 596, 'h': 596, 'resize': 'fit'}, 'small': {'w': 596, 'h': 596, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 860563764940226560, 'id_str': '860563764940226560', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg', 'url': 'https://t.co/oDIQ1KkdPt', 'display_url': 'pic.twitter.com/oDIQ1KkdPt', 'expanded_url': 'https://twitter.com/dog_rates/status/860563773140209665/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 596, 'h': 596, 'resize': 'fit'}, 'medium': {'w': 596, 'h': 596, 'resize': 'fit'}, 'small': {'w': 596, 'h': 596, 'resize': 'fit'}}}, {'id': 860563764956889088, 'id_str': '860563764956889088', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C_FWL0zUAAA9Cnn.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_FWL0zUAAA9Cnn.jpg', 'url': 'https://t.co/oDIQ1KkdPt', 'display_url': 'pic.twitter.com/oDIQ1KkdPt', 'expanded_url': 'https://twitter.com/dog_rates/status/860563773140209665/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1000, 'h': 667, 'resize': 'fit'}, 'small': {'w': 680, 'h': 454, 'resize': 'fit'}, 'large': {'w': 1000, 'h': 667, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1847, 'favorite_count': 6697, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 1847, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sat May 06 18:27:40 +0000 2017', 'id': 860924035999428608, 'id_str': '860924035999428608', 'full_text': 'RT @tallylott: h*ckin adorable promposal. 13/10 @dog_rates https://t.co/6n8hzNihJ9', 'truncated': False, 'display_text_range': [0, 82], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'tallylott', 'name': 'tally', 'id': 363890752, 'id_str': '363890752', 'indices': [3, 13]}, {'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [48, 58]}], 'urls': [], 'media': [{'id': 860914470050295814, 'id_str': '860914470050295814', 'indices': [59, 82], 'media_url': 'http://pbs.twimg.com/media/C_KVJjFXcAYcQMI.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_KVJjFXcAYcQMI.jpg', 'url': 'https://t.co/6n8hzNihJ9', 'display_url': 'pic.twitter.com/6n8hzNihJ9', 'expanded_url': 'https://twitter.com/tallylott/status/860914485250469888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 848, 'h': 1131, 'resize': 'fit'}, 'medium': {'w': 848, 'h': 1131, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}, 'source_status_id': 860914485250469888, 'source_status_id_str': '860914485250469888', 'source_user_id': 363890752, 'source_user_id_str': '363890752'}]}, 'extended_entities': {'media': [{'id': 860914470050295814, 'id_str': '860914470050295814', 'indices': [59, 82], 'media_url': 'http://pbs.twimg.com/media/C_KVJjFXcAYcQMI.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_KVJjFXcAYcQMI.jpg', 'url': 'https://t.co/6n8hzNihJ9', 'display_url': 'pic.twitter.com/6n8hzNihJ9', 'expanded_url': 'https://twitter.com/tallylott/status/860914485250469888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 848, 'h': 1131, 'resize': 'fit'}, 'medium': {'w': 848, 'h': 1131, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}, 'source_status_id': 860914485250469888, 'source_status_id_str': '860914485250469888', 'source_user_id': 363890752, 'source_user_id_str': '363890752'}, {'id': 860914470041923585, 'id_str': '860914470041923585', 'indices': [59, 82], 'media_url': 'http://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg', 'url': 'https://t.co/6n8hzNihJ9', 'display_url': 'pic.twitter.com/6n8hzNihJ9', 'expanded_url': 'https://twitter.com/tallylott/status/860914485250469888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}, 'source_status_id': 860914485250469888, 'source_status_id_str': '860914485250469888', 'source_user_id': 363890752, 'source_user_id_str': '363890752'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sat May 06 17:49:42 +0000 2017', 'id': 860914485250469888, 'id_str': '860914485250469888', 'full_text': 'h*ckin adorable promposal. 13/10 @dog_rates https://t.co/6n8hzNihJ9', 'truncated': False, 'display_text_range': [0, 43], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [33, 43]}], 'urls': [], 'media': [{'id': 860914470050295814, 'id_str': '860914470050295814', 'indices': [44, 67], 'media_url': 'http://pbs.twimg.com/media/C_KVJjFXcAYcQMI.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_KVJjFXcAYcQMI.jpg', 'url': 'https://t.co/6n8hzNihJ9', 'display_url': 'pic.twitter.com/6n8hzNihJ9', 'expanded_url': 'https://twitter.com/tallylott/status/860914485250469888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 848, 'h': 1131, 'resize': 'fit'}, 'medium': {'w': 848, 'h': 1131, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 860914470050295814, 'id_str': '860914470050295814', 'indices': [44, 67], 'media_url': 'http://pbs.twimg.com/media/C_KVJjFXcAYcQMI.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_KVJjFXcAYcQMI.jpg', 'url': 'https://t.co/6n8hzNihJ9', 'display_url': 'pic.twitter.com/6n8hzNihJ9', 'expanded_url': 'https://twitter.com/tallylott/status/860914485250469888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 848, 'h': 1131, 'resize': 'fit'}, 'medium': {'w': 848, 'h': 1131, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 860914470041923585, 'id_str': '860914470041923585', 'indices': [44, 67], 'media_url': 'http://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg', 'url': 'https://t.co/6n8hzNihJ9', 'display_url': 'pic.twitter.com/6n8hzNihJ9', 'expanded_url': 'https://twitter.com/tallylott/status/860914485250469888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 363890752, 'id_str': '363890752', 'name': 'tally', 'screen_name': 'tallylott', 'location': '', 'description': 'JMU TF ‘21', 'url': None, 'entities': {'description': {'urls': []}}, 'protected': False, 'followers_count': 620, 'friends_count': 426, 'listed_count': 3, 'created_at': 'Sun Aug 28 21:27:23 +0000 2011', 'favourites_count': 20360, 'utc_offset': None, 'time_zone': None, 'geo_enabled': False, 'verified': False, 'statuses_count': 11558, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '642D8B', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme10/bg.gif', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme10/bg.gif', 'profile_background_tile': True, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1558865155110408193/3s4ASpss_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1558865155110408193/3s4ASpss_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/363890752/1650081226', 'profile_link_color': 'FF0000', 'profile_sidebar_border_color': '65B0DA', 'profile_sidebar_fill_color': '7AC3EE', 'profile_text_color': '3D1957', 'profile_use_background_image': True, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 675, 'favorite_count': 9073, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 675, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri May 05 18:36:06 +0000 2017', 'id': 860563773140209665, 'id_str': '860563773140209665', 'full_text': "Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t.co/qZdSdzm08p https://t.co/oDIQ1KkdPt", 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/qZdSdzm08p', 'expanded_url': 'https://www.gofundme.com/help-lorenzo-beat-cancer', 'display_url': 'gofundme.com/help-lorenzo-b…', 'indices': [115, 138]}], 'media': [{'id': 860563764940226560, 'id_str': '860563764940226560', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg', 'url': 'https://t.co/oDIQ1KkdPt', 'display_url': 'pic.twitter.com/oDIQ1KkdPt', 'expanded_url': 'https://twitter.com/dog_rates/status/860563773140209665/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 596, 'h': 596, 'resize': 'fit'}, 'medium': {'w': 596, 'h': 596, 'resize': 'fit'}, 'small': {'w': 596, 'h': 596, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 860563764940226560, 'id_str': '860563764940226560', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg', 'url': 'https://t.co/oDIQ1KkdPt', 'display_url': 'pic.twitter.com/oDIQ1KkdPt', 'expanded_url': 'https://twitter.com/dog_rates/status/860563773140209665/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 596, 'h': 596, 'resize': 'fit'}, 'medium': {'w': 596, 'h': 596, 'resize': 'fit'}, 'small': {'w': 596, 'h': 596, 'resize': 'fit'}}}, {'id': 860563764956889088, 'id_str': '860563764956889088', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C_FWL0zUAAA9Cnn.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_FWL0zUAAA9Cnn.jpg', 'url': 'https://t.co/oDIQ1KkdPt', 'display_url': 'pic.twitter.com/oDIQ1KkdPt', 'expanded_url': 'https://twitter.com/dog_rates/status/860563773140209665/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1000, 'h': 667, 'resize': 'fit'}, 'small': {'w': 680, 'h': 454, 'resize': 'fit'}, 'large': {'w': 1000, 'h': 667, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1847, 'favorite_count': 6697, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri May 05 16:00:04 +0000 2017', 'id': 860524505164394496, 'id_str': '860524505164394496', 'full_text': "This is Carl. He likes to dance. Doesn't care what you think about it. 13/10 h*ckin confident pup https://t.co/C2zHcNIu4I", 'truncated': False, 'display_text_range': [0, 97], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 860524497660776448, 'id_str': '860524497660776448', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg', 'url': 'https://t.co/C2zHcNIu4I', 'display_url': 'pic.twitter.com/C2zHcNIu4I', 'expanded_url': 'https://twitter.com/dog_rates/status/860524505164394496/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 560, 'h': 850, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 560, 'h': 850, 'resize': 'fit'}, 'small': {'w': 448, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 860524497660776448, 'id_str': '860524497660776448', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg', 'url': 'https://t.co/C2zHcNIu4I', 'display_url': 'pic.twitter.com/C2zHcNIu4I', 'expanded_url': 'https://twitter.com/dog_rates/status/860524505164394496/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 560, 'h': 850, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 560, 'h': 850, 'resize': 'fit'}, 'small': {'w': 448, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4582, 'favorite_count': 21177, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu May 04 23:34:55 +0000 2017', 'id': 860276583193509888, 'id_str': '860276583193509888', 'full_text': 'This is Jordy. He likes to go on adventures and watch the small scaly underwater dogs with fins pass him by. 12/10 peaceful as h*ck https://t.co/xJo6S2sfsN', 'truncated': False, 'display_text_range': [0, 131], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 860276575736020992, 'id_str': '860276575736020992', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg', 'url': 'https://t.co/xJo6S2sfsN', 'display_url': 'pic.twitter.com/xJo6S2sfsN', 'expanded_url': 'https://twitter.com/dog_rates/status/860276583193509888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 959, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1279, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 860276575736020992, 'id_str': '860276575736020992', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg', 'url': 'https://t.co/xJo6S2sfsN', 'display_url': 'pic.twitter.com/xJo6S2sfsN', 'expanded_url': 'https://twitter.com/dog_rates/status/860276583193509888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 959, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1279, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3055, 'favorite_count': 16521, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu May 04 17:30:24 +0000 2017', 'id': 860184849394610176, 'id_str': '860184849394610176', 'full_text': 'Here we have perhaps the wisest dog of all. Above average with light sabers. Immortal as h*ck. 14/10 dog, or dog not, there is no try https://t.co/upRYxG4KbG', 'truncated': False, 'display_text_range': [0, 133], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 860184837587517440, 'id_str': '860184837587517440', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg', 'url': 'https://t.co/upRYxG4KbG', 'display_url': 'pic.twitter.com/upRYxG4KbG', 'expanded_url': 'https://twitter.com/dog_rates/status/860184849394610176/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 567, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1920, 'resize': 'fit'}, 'medium': {'w': 1000, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 860184837587517440, 'id_str': '860184837587517440', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg', 'url': 'https://t.co/upRYxG4KbG', 'display_url': 'pic.twitter.com/upRYxG4KbG', 'expanded_url': 'https://twitter.com/dog_rates/status/860184849394610176/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 567, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1920, 'resize': 'fit'}, 'medium': {'w': 1000, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5103, 'favorite_count': 14951, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu May 04 17:01:34 +0000 2017', 'id': 860177593139703809, 'id_str': '860177593139703809', 'full_text': 'RT @dog_rates: Ohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboy. 10/10 for all (by happytailsresort) https://t.c…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Fri Aug 05 21:19:27 +0000 2016', 'id': 761672994376806400, 'id_str': '761672994376806400', 'full_text': 'Ohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboy. 10/10 for all (by happytailsresort) https://t.co/EY8kEFuzK7', 'truncated': False, 'display_text_range': [0, 112], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 761672828462718981, 'id_str': '761672828462718981', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/761672828462718981/pu/img/R00UYAAWB3GtuHdI.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/761672828462718981/pu/img/R00UYAAWB3GtuHdI.jpg', 'url': 'https://t.co/EY8kEFuzK7', 'display_url': 'pic.twitter.com/EY8kEFuzK7', 'expanded_url': 'https://twitter.com/dog_rates/status/761672994376806400/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 720, 'resize': 'fit'}, 'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 761672828462718981, 'id_str': '761672828462718981', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/761672828462718981/pu/img/R00UYAAWB3GtuHdI.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/761672828462718981/pu/img/R00UYAAWB3GtuHdI.jpg', 'url': 'https://t.co/EY8kEFuzK7', 'display_url': 'pic.twitter.com/EY8kEFuzK7', 'expanded_url': 'https://twitter.com/dog_rates/status/761672994376806400/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 720, 'resize': 'fit'}, 'large': {'w': 720, 'h': 720, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [1, 1], 'duration_millis': 15082, 'variants': [{'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/761672828462718981/pu/pl/6WCH9yrRtq3PhhSe.m3u8'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/761672828462718981/pu/vid/480x480/jbR6Wmcj_asEkBMe.mp4'}, {'bitrate': 1280000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/761672828462718981/pu/vid/720x720/4FHE09W1A7uxjqHH.mp4'}, {'bitrate': 320000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/761672828462718981/pu/vid/240x240/YXsgMdfcUmpoqgg4.mp4'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 26593, 'favorite_count': 46106, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'in'}, 'is_quote_status': False, 'retweet_count': 26593, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'in'}
{'created_at': 'Thu May 04 00:15:58 +0000 2017', 'id': 859924526012018688, 'id_str': '859924526012018688', 'full_text': 'Meet Milky. She has no idea what happened. Just as pupset as you. Perhaps a sheep exploded. Even offered to help clean. 12/10 very good girl https://t.co/g8vpXFzw29', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 859924516142804992, 'id_str': '859924516142804992', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg', 'url': 'https://t.co/g8vpXFzw29', 'display_url': 'pic.twitter.com/g8vpXFzw29', 'expanded_url': 'https://twitter.com/dog_rates/status/859924526012018688/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1200, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 859924516142804992, 'id_str': '859924516142804992', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg', 'url': 'https://t.co/g8vpXFzw29', 'display_url': 'pic.twitter.com/g8vpXFzw29', 'expanded_url': 'https://twitter.com/dog_rates/status/859924526012018688/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1200, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3572, 'favorite_count': 17557, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed May 03 19:26:06 +0000 2017', 'id': 859851578198683649, 'id_str': '859851578198683649', 'full_text': 'Meet Trooper. He picks pup recyclables that have blown out of bins in the neighborhood and puts them back. 13/10 environmentally savvy af https://t.co/BqSttrTuIl', 'truncated': False, 'display_text_range': [0, 137], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 859851567826169857, 'id_str': '859851567826169857', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-7OcfvXcAEPXIC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-7OcfvXcAEPXIC.jpg', 'url': 'https://t.co/BqSttrTuIl', 'display_url': 'pic.twitter.com/BqSttrTuIl', 'expanded_url': 'https://twitter.com/dog_rates/status/859851578198683649/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1200, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 859851567826169857, 'id_str': '859851567826169857', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-7OcfvXcAEPXIC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-7OcfvXcAEPXIC.jpg', 'url': 'https://t.co/BqSttrTuIl', 'display_url': 'pic.twitter.com/BqSttrTuIl', 'expanded_url': 'https://twitter.com/dog_rates/status/859851578198683649/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1200, 'h': 1600, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}, {'id': 859851567750672385, 'id_str': '859851567750672385', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-7OcfdXcAEwxSr.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-7OcfdXcAEwxSr.jpg', 'url': 'https://t.co/BqSttrTuIl', 'display_url': 'pic.twitter.com/BqSttrTuIl', 'expanded_url': 'https://twitter.com/dog_rates/status/859851578198683649/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}, {'id': 859851567876513792, 'id_str': '859851567876513792', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-7Ocf7XoAAVVtN.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-7Ocf7XoAAVVtN.jpg', 'url': 'https://t.co/BqSttrTuIl', 'display_url': 'pic.twitter.com/BqSttrTuIl', 'expanded_url': 'https://twitter.com/dog_rates/status/859851578198683649/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}, {'id': 859851567838769152, 'id_str': '859851567838769152', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg', 'url': 'https://t.co/BqSttrTuIl', 'display_url': 'pic.twitter.com/BqSttrTuIl', 'expanded_url': 'https://twitter.com/dog_rates/status/859851578198683649/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1201, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3057, 'favorite_count': 13940, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed May 03 03:17:27 +0000 2017', 'id': 859607811541651456, 'id_str': '859607811541651456', 'full_text': "Sorry for the lack of posts today. I came home from school and had to spend quality time with my puppo. Her name is Zoey and she's 13/10 https://t.co/BArWupFAn0", 'truncated': False, 'display_text_range': [0, 136], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 859607806428803077, 'id_str': '859607806428803077', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg', 'url': 'https://t.co/BArWupFAn0', 'display_url': 'pic.twitter.com/BArWupFAn0', 'expanded_url': 'https://twitter.com/dog_rates/status/859607811541651456/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 750, 'h': 1334, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 859607806428803077, 'id_str': '859607806428803077', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg', 'url': 'https://t.co/BArWupFAn0', 'display_url': 'pic.twitter.com/BArWupFAn0', 'expanded_url': 'https://twitter.com/dog_rates/status/859607811541651456/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 750, 'h': 1334, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1359, 'favorite_count': 16782, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue May 02 00:04:57 +0000 2017', 'id': 859196978902773760, 'id_str': '859196978902773760', 'full_text': "We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10 https://t.co/g2nSyGenG9", 'truncated': False, 'display_text_range': [0, 124], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 859196962498805762, 'id_str': '859196962498805762', 'indices': [125, 148], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/859196962498805762/pu/img/-yBpr4-o4GJZECYE.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/859196962498805762/pu/img/-yBpr4-o4GJZECYE.jpg', 'url': 'https://t.co/g2nSyGenG9', 'display_url': 'pic.twitter.com/g2nSyGenG9', 'expanded_url': 'https://twitter.com/dog_rates/status/859196978902773760/video/1', 'type': 'photo', 'sizes': {'small': {'w': 480, 'h': 480, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 480, 'h': 480, 'resize': 'fit'}, 'large': {'w': 480, 'h': 480, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 859196962498805762, 'id_str': '859196962498805762', 'indices': [125, 148], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/859196962498805762/pu/img/-yBpr4-o4GJZECYE.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/859196962498805762/pu/img/-yBpr4-o4GJZECYE.jpg', 'url': 'https://t.co/g2nSyGenG9', 'display_url': 'pic.twitter.com/g2nSyGenG9', 'expanded_url': 'https://twitter.com/dog_rates/status/859196978902773760/video/1', 'type': 'video', 'sizes': {'small': {'w': 480, 'h': 480, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 480, 'h': 480, 'resize': 'fit'}, 'large': {'w': 480, 'h': 480, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [1, 1], 'duration_millis': 5467, 'variants': [{'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/859196962498805762/pu/vid/480x480/tlEuPL7G9GR-7Kqp.mp4'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/859196962498805762/pu/vid/240x240/j9YkVYhW62-UOOB5.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/859196962498805762/pu/pl/Wo_KYsFyTtB12y_V.m3u8'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 26161, 'favorite_count': 80256, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon May 01 15:58:40 +0000 2017', 'id': 859074603037188101, 'id_str': '859074603037188101', 'full_text': "Here we have an exotic dog. Good at ukulele. Fashionable af. Has two more arms if needed. Is blue. Knows what 'ohana means. 13/10 would pet https://t.co/gEsymGTXCT", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 859074595021836288, 'id_str': '859074595021836288', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C-wLyufW0AA546I.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg', 'url': 'https://t.co/gEsymGTXCT', 'display_url': 'pic.twitter.com/gEsymGTXCT', 'expanded_url': 'https://twitter.com/dog_rates/status/859074603037188101/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 320, 'h': 180, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 320, 'h': 180, 'resize': 'fit'}, 'small': {'w': 320, 'h': 180, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 859074595021836288, 'id_str': '859074595021836288', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C-wLyufW0AA546I.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg', 'url': 'https://t.co/gEsymGTXCT', 'display_url': 'pic.twitter.com/gEsymGTXCT', 'expanded_url': 'https://twitter.com/dog_rates/status/859074603037188101/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 320, 'h': 180, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 320, 'h': 180, 'resize': 'fit'}, 'small': {'w': 320, 'h': 180, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 11916, 'favorite_count': 30322, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon May 01 01:47:28 +0000 2017', 'id': 858860390427611136, 'id_str': '858860390427611136', 'full_text': "RT @dog_rates: Meet Winston. He knows he's a little too big for the swing, but he doesn't care. Kindly requests a push. 12/10 would happily…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Wed Mar 08 18:52:12 +0000 2017', 'id': 839549326359670784, 'id_str': '839549326359670784', 'full_text': "Meet Winston. He knows he's a little too big for the swing, but he doesn't care. Kindly requests a push. 12/10 would happily oblige https://t.co/GuxEXTdnMu", 'truncated': False, 'display_text_range': [0, 131], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 839549305585295362, 'id_str': '839549305585295362', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg', 'url': 'https://t.co/GuxEXTdnMu', 'display_url': 'pic.twitter.com/GuxEXTdnMu', 'expanded_url': 'https://twitter.com/dog_rates/status/839549326359670784/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1153, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 839549305585295362, 'id_str': '839549305585295362', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg', 'url': 'https://t.co/GuxEXTdnMu', 'display_url': 'pic.twitter.com/GuxEXTdnMu', 'expanded_url': 'https://twitter.com/dog_rates/status/839549326359670784/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1153, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7043, 'favorite_count': 25510, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 7043, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Mon May 01 00:40:27 +0000 2017', 'id': 858843525470990336, 'id_str': '858843525470990336', 'full_text': "I have stumbled puppon a doggo painting party. They're looking to be the next Pupcasso or Puppollock. All 13/10 would put it on the fridge https://t.co/cUeDMlHJbq", 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 858843519850614784, 'id_str': '858843519850614784', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg', 'url': 'https://t.co/cUeDMlHJbq', 'display_url': 'pic.twitter.com/cUeDMlHJbq', 'expanded_url': 'https://twitter.com/dog_rates/status/858843525470990336/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 482, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1133, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 850, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 858843519850614784, 'id_str': '858843519850614784', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg', 'url': 'https://t.co/cUeDMlHJbq', 'display_url': 'pic.twitter.com/cUeDMlHJbq', 'expanded_url': 'https://twitter.com/dog_rates/status/858843525470990336/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 482, 'resize': 'fit'}, 'large': {'w': 1600, 'h': 1133, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 850, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3017, 'favorite_count': 14078, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Apr 30 00:02:42 +0000 2017', 'id': 858471635011153920, 'id_str': '858471635011153920', 'full_text': 'This is Sophie. She just arrived. Used pawority shipping. Speedy as h*ck delivery. 13/10 would carefully assemble https://t.co/8jOC4zhNxy', 'truncated': False, 'display_text_range': [0, 113], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 858471621065150464, 'id_str': '858471621065150464', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg', 'url': 'https://t.co/8jOC4zhNxy', 'display_url': 'pic.twitter.com/8jOC4zhNxy', 'expanded_url': 'https://twitter.com/dog_rates/status/858471635011153920/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 899, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 674, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 858471621065150464, 'id_str': '858471621065150464', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg', 'url': 'https://t.co/8jOC4zhNxy', 'display_url': 'pic.twitter.com/8jOC4zhNxy', 'expanded_url': 'https://twitter.com/dog_rates/status/858471635011153920/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 899, 'h': 1600, 'resize': 'fit'}, 'medium': {'w': 674, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4238, 'favorite_count': 19408, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Apr 28 23:57:28 +0000 2017', 'id': 858107933456039936, 'id_str': '858107933456039936', 'full_text': "This is Wyatt. He had an interview earlier today. Was just told he didn't get the job. A h*ckin injustice. Still 12/10 keep your chin pup https://t.co/QXA4sCXSDF", 'truncated': False, 'display_text_range': [0, 137], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 858107922668277760, 'id_str': '858107922668277760', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg', 'url': 'https://t.co/QXA4sCXSDF', 'display_url': 'pic.twitter.com/QXA4sCXSDF', 'expanded_url': 'https://twitter.com/dog_rates/status/858107933456039936/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 858107922668277760, 'id_str': '858107922668277760', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg', 'url': 'https://t.co/QXA4sCXSDF', 'display_url': 'pic.twitter.com/QXA4sCXSDF', 'expanded_url': 'https://twitter.com/dog_rates/status/858107933456039936/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2530, 'favorite_count': 14180, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Apr 28 16:08:49 +0000 2017', 'id': 857989990357356544, 'id_str': '857989990357356544', 'full_text': "This is Rosie. She was just informed of the walk that's about to happen. Knows there are many a stick along the way. 12/10 such excite https://t.co/sOl7cFaP5X", 'truncated': False, 'display_text_range': [0, 134], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 857989982342057986, 'id_str': '857989982342057986', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg', 'url': 'https://t.co/sOl7cFaP5X', 'display_url': 'pic.twitter.com/sOl7cFaP5X', 'expanded_url': 'https://twitter.com/dog_rates/status/857989990357356544/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 857989982342057986, 'id_str': '857989982342057986', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg', 'url': 'https://t.co/sOl7cFaP5X', 'display_url': 'pic.twitter.com/sOl7cFaP5X', 'expanded_url': 'https://twitter.com/dog_rates/status/857989990357356544/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2258, 'favorite_count': 14445, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Apr 28 00:00:54 +0000 2017', 'id': 857746408056729600, 'id_str': '857746408056729600', 'full_text': "Meet Thor. He doesn't have finals because he's a dog but is pupset you have finals. Just wants to play. 13/10 would abandon education for https://t.co/7IFn3rkJai", 'truncated': False, 'display_text_range': [0, 137], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 857746390159675396, 'id_str': '857746390159675396', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg', 'url': 'https://t.co/7IFn3rkJai', 'display_url': 'pic.twitter.com/7IFn3rkJai', 'expanded_url': 'https://twitter.com/dog_rates/status/857746408056729600/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 857746390159675396, 'id_str': '857746390159675396', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg', 'url': 'https://t.co/7IFn3rkJai', 'display_url': 'pic.twitter.com/7IFn3rkJai', 'expanded_url': 'https://twitter.com/dog_rates/status/857746408056729600/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 857746391254392832, 'id_str': '857746391254392832', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-dTzF4XYAAVFQt.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-dTzF4XYAAVFQt.jpg', 'url': 'https://t.co/7IFn3rkJai', 'display_url': 'pic.twitter.com/7IFn3rkJai', 'expanded_url': 'https://twitter.com/dog_rates/status/857746408056729600/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}, {'id': 857746398346981376, 'id_str': '857746398346981376', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-dTzgTXsAAkOyu.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-dTzgTXsAAkOyu.jpg', 'url': 'https://t.co/7IFn3rkJai', 'display_url': 'pic.twitter.com/7IFn3rkJai', 'expanded_url': 'https://twitter.com/dog_rates/status/857746408056729600/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1201, 'h': 1600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9309, 'favorite_count': 30690, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Apr 27 00:38:11 +0000 2017', 'id': 857393404942143489, 'id_str': '857393404942143489', 'full_text': "Instead of the usual nightly dog rate, I'm sharing this story with you. Meeko is 13/10 and would like your help \n\nhttps://t.co/Mj4j6QoIJk https://t.co/JdNE5oqYEV", 'truncated': False, 'display_text_range': [0, 137], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/Mj4j6QoIJk', 'expanded_url': 'https://www.gofundme.com/meeko-needs-heart-surgery', 'display_url': 'gofundme.com/meeko-needs-he…', 'indices': [114, 137]}], 'media': [{'id': 857393395161067520, 'id_str': '857393395161067520', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-YSwA9XcAAxF_0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-YSwA9XcAAxF_0.jpg', 'url': 'https://t.co/JdNE5oqYEV', 'display_url': 'pic.twitter.com/JdNE5oqYEV', 'expanded_url': 'https://twitter.com/dog_rates/status/857393404942143489/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 444, 'h': 399, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 444, 'h': 399, 'resize': 'fit'}, 'large': {'w': 444, 'h': 399, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 857393395161067520, 'id_str': '857393395161067520', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-YSwA9XcAAxF_0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-YSwA9XcAAxF_0.jpg', 'url': 'https://t.co/JdNE5oqYEV', 'display_url': 'pic.twitter.com/JdNE5oqYEV', 'expanded_url': 'https://twitter.com/dog_rates/status/857393404942143489/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 444, 'h': 399, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 444, 'h': 399, 'resize': 'fit'}, 'large': {'w': 444, 'h': 399, 'resize': 'fit'}}}, {'id': 857393395161059329, 'id_str': '857393395161059329', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-YSwA9XUAECvVK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-YSwA9XUAECvVK.jpg', 'url': 'https://t.co/JdNE5oqYEV', 'display_url': 'pic.twitter.com/JdNE5oqYEV', 'expanded_url': 'https://twitter.com/dog_rates/status/857393404942143489/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 691, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1180, 'resize': 'fit'}, 'small': {'w': 680, 'h': 392, 'resize': 'fit'}}}, {'id': 857393395169460225, 'id_str': '857393395169460225', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg', 'url': 'https://t.co/JdNE5oqYEV', 'display_url': 'pic.twitter.com/JdNE5oqYEV', 'expanded_url': 'https://twitter.com/dog_rates/status/857393404942143489/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}}, {'id': 857393395161059328, 'id_str': '857393395161059328', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C-YSwA9XUAArZf1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-YSwA9XUAArZf1.jpg', 'url': 'https://t.co/JdNE5oqYEV', 'display_url': 'pic.twitter.com/JdNE5oqYEV', 'expanded_url': 'https://twitter.com/dog_rates/status/857393404942143489/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 901, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 511, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1538, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1436, 'favorite_count': 5288, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Apr 26 16:00:39 +0000 2017', 'id': 857263160327368704, 'id_str': '857263160327368704', 'full_text': "This is Oscar and Oliver. Oliver shrunk Oscar. Oscar isn't pleased about it. Quite pupset tbh. Oliver doesn't seem to mind. Both 13/10 https://t.co/e3U4NReleC", 'truncated': False, 'display_text_range': [0, 134], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 857263152219791360, 'id_str': '857263152219791360', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg', 'url': 'https://t.co/e3U4NReleC', 'display_url': 'pic.twitter.com/e3U4NReleC', 'expanded_url': 'https://twitter.com/dog_rates/status/857263160327368704/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 959, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1636, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 543, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 857263152219791360, 'id_str': '857263152219791360', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg', 'url': 'https://t.co/e3U4NReleC', 'display_url': 'pic.twitter.com/e3U4NReleC', 'expanded_url': 'https://twitter.com/dog_rates/status/857263160327368704/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 959, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1636, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 543, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3955, 'favorite_count': 18192, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Apr 26 12:48:51 +0000 2017', 'id': 857214891891077121, 'id_str': '857214891891077121', 'full_text': '@Marc_IRL pixelated af 12/10', 'truncated': False, 'display_text_range': [10, 28], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'Marc_IRL', 'name': 'Marc Watson', 'id': 180670967, 'id_str': '180670967', 'indices': [0, 9]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 857156678055342080, 'in_reply_to_status_id_str': '857156678055342080', 'in_reply_to_user_id': 180670967, 'in_reply_to_user_id_str': '180670967', 'in_reply_to_screen_name': 'Marc_IRL', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 16, 'favorite_count': 203, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Wed Apr 26 02:41:43 +0000 2017', 'id': 857062103051644929, 'id_str': '857062103051644929', 'full_text': 'RT @AaronChewning: First time wearing my @dog_rates hat on a flight and I get DOUBLE OPEN ROWS. Really makes you think. 13/10 https://t.co/…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'AaronChewning', 'name': 'Aaron Chewning', 'id': 58709723, 'id_str': '58709723', 'indices': [3, 17]}, {'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [41, 51]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Wed Apr 26 02:37:47 +0000 2017', 'id': 857061112319234050, 'id_str': '857061112319234050', 'full_text': 'First time wearing my @dog_rates hat on a flight and I get DOUBLE OPEN ROWS. Really makes you think. 13/10 https://t.co/4ASyICcnIP', 'truncated': False, 'display_text_range': [0, 106], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [22, 32]}], 'urls': [], 'media': [{'id': 857061104026927105, 'id_str': '857061104026927105', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C-TkiIBUQAE9GNb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-TkiIBUQAE9GNb.jpg', 'url': 'https://t.co/4ASyICcnIP', 'display_url': 'pic.twitter.com/4ASyICcnIP', 'expanded_url': 'https://twitter.com/AaronChewning/status/857061112319234050/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 511, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1538, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 857061104026927105, 'id_str': '857061104026927105', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C-TkiIBUQAE9GNb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-TkiIBUQAE9GNb.jpg', 'url': 'https://t.co/4ASyICcnIP', 'display_url': 'pic.twitter.com/4ASyICcnIP', 'expanded_url': 'https://twitter.com/AaronChewning/status/857061112319234050/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 511, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1538, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 58709723, 'id_str': '58709723', 'name': 'Aaron Chewning', 'screen_name': 'AaronChewning', 'location': 'Atlanta, GA', 'description': 'No Worries If Not Podcast. "Good for you, Aaron" - @gqmagazine', 'url': 'https://t.co/uPFVkmicKa', 'entities': {'url': {'urls': [{'url': 'https://t.co/uPFVkmicKa', 'expanded_url': 'http://www.Aaron.productions', 'display_url': 'Aaron.productions', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 43747, 'friends_count': 1390, 'listed_count': 184, 'created_at': 'Tue Jul 21 04:58:16 +0000 2009', 'favourites_count': 94024, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 30947, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1182075237187428357/_WxFFfrq_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1182075237187428357/_WxFFfrq_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/58709723/1504453835', 'profile_link_color': '0084B4', 'profile_sidebar_border_color': 'C0DEED', 'profile_sidebar_fill_color': 'DDEEF6', 'profile_text_color': '333333', 'profile_use_background_image': True, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': {'id': '00c39537733fa112', 'url': 'https://api.twitter.com/1.1/geo/id/00c39537733fa112.json', 'place_type': 'city', 'name': 'Queens', 'full_name': 'Queens, NY', 'country_code': 'US', 'country': 'United States', 'contained_within': [], 'bounding_box': {'type': 'Polygon', 'coordinates': [[[-73.962582, 40.541722], [-73.699793, 40.541722], [-73.699793, 40.8000371], [-73.962582, 40.8000371]]]}, 'attributes': {}}, 'contributors': None, 'is_quote_status': False, 'retweet_count': 146, 'favorite_count': 4702, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 146, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Wed Apr 26 00:33:27 +0000 2017', 'id': 857029823797047296, 'id_str': '857029823797047296', 'full_text': 'This is Zeke. He performs group cheeky wink tutorials. Pawfect execution here. 12/10 would wink back https://t.co/uMH5CLjXJu', 'truncated': False, 'display_text_range': [0, 100], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 857029813072252928, 'id_str': '857029813072252928', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/C-TIEwIXUAACf_q.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-TIEwIXUAACf_q.jpg', 'url': 'https://t.co/uMH5CLjXJu', 'display_url': 'pic.twitter.com/uMH5CLjXJu', 'expanded_url': 'https://twitter.com/dog_rates/status/857029823797047296/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 857029813072252928, 'id_str': '857029813072252928', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/C-TIEwIXUAACf_q.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-TIEwIXUAACf_q.jpg', 'url': 'https://t.co/uMH5CLjXJu', 'display_url': 'pic.twitter.com/uMH5CLjXJu', 'expanded_url': 'https://twitter.com/dog_rates/status/857029823797047296/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}, {'id': 857029813088997377, 'id_str': '857029813088997377', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg', 'url': 'https://t.co/uMH5CLjXJu', 'display_url': 'pic.twitter.com/uMH5CLjXJu', 'expanded_url': 'https://twitter.com/dog_rates/status/857029823797047296/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3470, 'favorite_count': 16996, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Apr 24 16:22:16 +0000 2017', 'id': 856543823941562368, 'id_str': '856543823941562368', 'full_text': "This is Callie. She'll be your navigator today. Takes her job very seriously. Will shift for you. One ear always in the pupholder. 12/10 https://t.co/Bh9DtLhIBO", 'truncated': False, 'display_text_range': [0, 136], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 856543816828018689, 'id_str': '856543816828018689', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg', 'url': 'https://t.co/Bh9DtLhIBO', 'display_url': 'pic.twitter.com/Bh9DtLhIBO', 'expanded_url': 'https://twitter.com/dog_rates/status/856543823941562368/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 856543816828018689, 'id_str': '856543816828018689', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg', 'url': 'https://t.co/Bh9DtLhIBO', 'display_url': 'pic.twitter.com/Bh9DtLhIBO', 'expanded_url': 'https://twitter.com/dog_rates/status/856543823941562368/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2535, 'favorite_count': 14784, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Apr 24 15:13:52 +0000 2017', 'id': 856526610513747968, 'id_str': '856526610513747968', 'full_text': 'THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY HI AFTER ALL. PUPGRADED TO A 14/10. WOULD BE AN HONOR TO FLY WITH https://t.co/p1hBHCmWnA', 'truncated': False, 'display_text_range': [0, 112], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 856526604033556482, 'id_str': '856526604033556482', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg', 'url': 'https://t.co/p1hBHCmWnA', 'display_url': 'pic.twitter.com/p1hBHCmWnA', 'expanded_url': 'https://twitter.com/dog_rates/status/856526610513747968/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 856526604033556482, 'id_str': '856526604033556482', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg', 'url': 'https://t.co/p1hBHCmWnA', 'display_url': 'pic.twitter.com/p1hBHCmWnA', 'expanded_url': 'https://twitter.com/dog_rates/status/856526610513747968/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 855818117272018944, 'in_reply_to_status_id_str': '855818117272018944', 'in_reply_to_user_id': 4196983835, 'in_reply_to_user_id_str': '4196983835', 'in_reply_to_screen_name': 'dog_rates', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1650, 'favorite_count': 10793, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Apr 23 23:26:03 +0000 2017', 'id': 856288084350160898, 'id_str': '856288084350160898', 'full_text': "@xianmcguire @Jenna_Marbles Kardashians wouldn't be famous if as a society we didn't place enormous value on what they do. The dogs are very deserving of their 14/10", 'truncated': False, 'display_text_range': [28, 165], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'jenna_marbles', 'name': 'jenna marbles', 'id': 1554627845221138437, 'id_str': '1554627845221138437', 'indices': [13, 27]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 15, 'favorite_count': 489, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sun Apr 23 23:01:59 +0000 2017', 'id': 856282028240666624, 'id_str': '856282028240666624', 'full_text': 'This is Cermet, Paesh, and Morple. They are absolute h*ckin superstars. Watered every day so they can grow. 14/10 for all https://t.co/GUefqUmZv8', 'truncated': False, 'display_text_range': [0, 121], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 856282018912628741, 'id_str': '856282018912628741', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C-If9ZzXcAUOeLn.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-If9ZzXcAUOeLn.jpg', 'url': 'https://t.co/GUefqUmZv8', 'display_url': 'pic.twitter.com/GUefqUmZv8', 'expanded_url': 'https://twitter.com/dog_rates/status/856282028240666624/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 600, 'h': 424, 'resize': 'fit'}, 'medium': {'w': 600, 'h': 424, 'resize': 'fit'}, 'small': {'w': 600, 'h': 424, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 856282018912628741, 'id_str': '856282018912628741', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C-If9ZzXcAUOeLn.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-If9ZzXcAUOeLn.jpg', 'url': 'https://t.co/GUefqUmZv8', 'display_url': 'pic.twitter.com/GUefqUmZv8', 'expanded_url': 'https://twitter.com/dog_rates/status/856282028240666624/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 600, 'h': 424, 'resize': 'fit'}, 'medium': {'w': 600, 'h': 424, 'resize': 'fit'}, 'small': {'w': 600, 'h': 424, 'resize': 'fit'}}}, {'id': 856282018900041728, 'id_str': '856282018900041728', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C-If9ZwXYAAZxCY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-If9ZwXYAAZxCY.jpg', 'url': 'https://t.co/GUefqUmZv8', 'display_url': 'pic.twitter.com/GUefqUmZv8', 'expanded_url': 'https://twitter.com/dog_rates/status/856282028240666624/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 750, 'resize': 'fit'}, 'large': {'w': 750, 'h': 750, 'resize': 'fit'}}}, {'id': 856282018900037632, 'id_str': '856282018900037632', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C-If9ZwXUAAa8CJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-If9ZwXUAAa8CJ.jpg', 'url': 'https://t.co/GUefqUmZv8', 'display_url': 'pic.twitter.com/GUefqUmZv8', 'expanded_url': 'https://twitter.com/dog_rates/status/856282028240666624/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1334, 'h': 750, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}, 'small': {'w': 680, 'h': 382, 'resize': 'fit'}}}, {'id': 856282018900058112, 'id_str': '856282018900058112', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg', 'url': 'https://t.co/GUefqUmZv8', 'display_url': 'pic.twitter.com/GUefqUmZv8', 'expanded_url': 'https://twitter.com/dog_rates/status/856282028240666624/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 750, 'resize': 'fit'}, 'large': {'w': 750, 'h': 750, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5562, 'favorite_count': 25151, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Apr 22 19:15:32 +0000 2017', 'id': 855862651834028034, 'id_str': '855862651834028034', 'full_text': '@dhmontgomery We also gave snoop dogg a 420/10 but I think that predated your research', 'truncated': False, 'display_text_range': [14, 86], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dhmontgomery', 'name': 'David H. Montgomery', 'id': 194351775, 'id_str': '194351775', 'indices': [0, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 855861584463351808, 'in_reply_to_status_id_str': '855861584463351808', 'in_reply_to_user_id': 194351775, 'in_reply_to_user_id_str': '194351775', 'in_reply_to_screen_name': 'dhmontgomery', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 21, 'favorite_count': 302, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sat Apr 22 19:05:32 +0000 2017', 'id': 855860136149123072, 'id_str': '855860136149123072', 'full_text': '@s8n You tried very hard to portray this good boy as not so good, but you have ultimately failed. His goodness shines through. 666/10', 'truncated': False, 'display_text_range': [5, 133], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 's8n', 'name': 'Satan', 'id': 13615722, 'id_str': '13615722', 'indices': [0, 4]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 855858535607001088, 'in_reply_to_status_id_str': '855858535607001088', 'in_reply_to_user_id': 13615722, 'in_reply_to_user_id_str': '13615722', 'in_reply_to_screen_name': 's8n', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 850, 'favorite_count': 4394, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sat Apr 22 18:55:51 +0000 2017', 'id': 855857698524602368, 'id_str': '855857698524602368', 'full_text': 'HE\'S LIKE "WAIT A MINUTE I\'M AN ANIMAL THIS IS AMAZING HI HUMAN I LOVE YOU AS WELL" 13/10 https://t.co/sb73bV5Y7S', 'truncated': False, 'display_text_range': [0, 89], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/sb73bV5Y7S', 'expanded_url': 'https://twitter.com/perfy/status/855857318168150016', 'display_url': 'twitter.com/perfy/status/8…', 'indices': [90, 113]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'retweet_count': 1853, 'favorite_count': 10830, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Apr 22 18:31:02 +0000 2017', 'id': 855851453814013952, 'id_str': '855851453814013952', 'full_text': "Here's a puppo participating in the #ScienceMarch. Cleverly disguising her own doggo agenda. 13/10 would keep the planet habitable for https://t.co/cMhq16isel", 'truncated': False, 'display_text_range': [0, 134], 'entities': {'hashtags': [{'text': 'ScienceMarch', 'indices': [36, 49]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 855851444666236933, 'id_str': '855851444666236933', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg', 'url': 'https://t.co/cMhq16isel', 'display_url': 'pic.twitter.com/cMhq16isel', 'expanded_url': 'https://twitter.com/dog_rates/status/855851453814013952/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 855851444666236933, 'id_str': '855851444666236933', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg', 'url': 'https://t.co/cMhq16isel', 'display_url': 'pic.twitter.com/cMhq16isel', 'expanded_url': 'https://twitter.com/dog_rates/status/855851453814013952/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 16073, 'favorite_count': 41801, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Apr 22 16:18:34 +0000 2017', 'id': 855818117272018944, 'id_str': '855818117272018944', 'full_text': 'I HEARD HE TIED HIS OWN BOWTIE MARK AND HE JUST WANTS TO SAY HI AND MAYBE A NOGGIN PAT SHOW SOME RESPECT 13/10 https://t.co/5BEjzT2Tth', 'truncated': False, 'display_text_range': [0, 110], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/5BEjzT2Tth', 'expanded_url': 'https://twitter.com/markhalperin/status/855656431005061120', 'display_url': 'twitter.com/markhalperin/s…', 'indices': [111, 134]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'quoted_status_id': 855656431005061120, 'quoted_status_id_str': '855656431005061120', 'quoted_status_permalink': {'url': 'https://t.co/5BEjzT2Tth', 'expanded': 'https://twitter.com/markhalperin/status/855656431005061120', 'display': 'twitter.com/markhalperin/s…'}, 'quoted_status': {'created_at': 'Sat Apr 22 05:36:05 +0000 2017', 'id': 855656431005061120, 'id_str': '855656431005061120', 'full_text': 'Seriously, @delta??!? https://t.co/j9pZlcDyAU', 'truncated': False, 'display_text_range': [0, 21], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'Delta', 'name': 'Delta', 'id': 5920532, 'id_str': '5920532', 'indices': [11, 17]}], 'urls': [], 'media': [{'id': 855656366299467776, 'id_str': '855656366299467776', 'indices': [22, 45], 'media_url': 'http://pbs.twimg.com/media/C9_m7oMU0AAtTAj.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9_m7oMU0AAtTAj.jpg', 'url': 'https://t.co/j9pZlcDyAU', 'display_url': 'pic.twitter.com/j9pZlcDyAU', 'expanded_url': 'https://twitter.com/MarkHalperin/status/855656431005061120/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 855656366299467776, 'id_str': '855656366299467776', 'indices': [22, 45], 'media_url': 'http://pbs.twimg.com/media/C9_m7oMU0AAtTAj.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9_m7oMU0AAtTAj.jpg', 'url': 'https://t.co/j9pZlcDyAU', 'display_url': 'pic.twitter.com/j9pZlcDyAU', 'expanded_url': 'https://twitter.com/MarkHalperin/status/855656431005061120/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 184136149, 'id_str': '184136149', 'name': 'Mark Halperin', 'screen_name': 'MarkHalperin', 'location': 'New York, NY', 'description': 'If you see a turtle on a fence post....', 'url': 'https://t.co/qAoVHXIaOx', 'entities': {'url': {'urls': [{'url': 'https://t.co/qAoVHXIaOx', 'expanded_url': 'https://markhalperin.substack.com', 'display_url': 'markhalperin.substack.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 302539, 'friends_count': 8353, 'listed_count': 3413, 'created_at': 'Sat Aug 28 19:53:23 +0000 2010', 'favourites_count': 165, 'utc_offset': None, 'time_zone': None, 'geo_enabled': False, 'verified': True, 'statuses_count': 30031, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': 'C0DEED', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': True, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1191876444412162048/SQEjuTs6_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1191876444412162048/SQEjuTs6_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/184136149/1556893334', 'profile_link_color': '0084B4', 'profile_sidebar_border_color': 'FFFFFF', 'profile_sidebar_fill_color': 'DDEEF6', 'profile_text_color': '333333', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2636, 'favorite_count': 14140, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'retweet_count': 4796, 'favorite_count': 24212, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Apr 21 16:33:22 +0000 2017', 'id': 855459453768019968, 'id_str': '855459453768019968', 'full_text': "Guys, we only rate dogs. This is quite clearly a bulbasaur. Please only send dogs. Thank you... 12/10 human used pet, it's super effective https://t.co/Xc7uj1C64x", 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 855459446566400000, 'id_str': '855459446566400000', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C98z1ZBXsAA2E_-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C98z1ZBXsAA2E_-.jpg', 'url': 'https://t.co/Xc7uj1C64x', 'display_url': 'pic.twitter.com/Xc7uj1C64x', 'expanded_url': 'https://twitter.com/dog_rates/status/855459453768019968/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 855459446566400000, 'id_str': '855459446566400000', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C98z1ZBXsAA2E_-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C98z1ZBXsAA2E_-.jpg', 'url': 'https://t.co/Xc7uj1C64x', 'display_url': 'pic.twitter.com/Xc7uj1C64x', 'expanded_url': 'https://twitter.com/dog_rates/status/855459453768019968/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 855459446562205697, 'id_str': '855459446562205697', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg', 'url': 'https://t.co/Xc7uj1C64x', 'display_url': 'pic.twitter.com/Xc7uj1C64x', 'expanded_url': 'https://twitter.com/dog_rates/status/855459453768019968/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7279, 'favorite_count': 27013, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Apr 21 02:22:29 +0000 2017', 'id': 855245323840757760, 'id_str': '855245323840757760', 'full_text': 'RT @dog_rates: Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Thu Mar 16 00:00:07 +0000 2017', 'id': 842163532590374912, 'id_str': '842163532590374912', 'full_text': 'Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug with permission https://t.co/o6E0hB3xZl', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 842163518233292801, 'id_str': '842163518233292801', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C6_3QgMWsAENVzr.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6_3QgMWsAENVzr.jpg', 'url': 'https://t.co/o6E0hB3xZl', 'display_url': 'pic.twitter.com/o6E0hB3xZl', 'expanded_url': 'https://twitter.com/dog_rates/status/842163532590374912/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 842163518233292801, 'id_str': '842163518233292801', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C6_3QgMWsAENVzr.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6_3QgMWsAENVzr.jpg', 'url': 'https://t.co/o6E0hB3xZl', 'display_url': 'pic.twitter.com/o6E0hB3xZl', 'expanded_url': 'https://twitter.com/dog_rates/status/842163532590374912/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}}}, {'id': 842163518233292803, 'id_str': '842163518233292803', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg', 'url': 'https://t.co/o6E0hB3xZl', 'display_url': 'pic.twitter.com/o6E0hB3xZl', 'expanded_url': 'https://twitter.com/dog_rates/status/842163532590374912/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5244, 'favorite_count': 22672, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 5244, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Thu Apr 20 19:16:59 +0000 2017', 'id': 855138241867124737, 'id_str': '855138241867124737', 'full_text': "RT @frasercampbell_: oh my... what's that... beautiful scarf around your neck... 14/10 a h*ckin good dog in a h*ckin good game @GoodDogsGam…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'frasercampbell_', 'name': 'fraser 🐙', 'id': 747554344434831360, 'id_str': '747554344434831360', 'indices': [3, 19]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Thu Apr 20 18:14:33 +0000 2017', 'id': 855122533267460096, 'id_str': '855122533267460096', 'full_text': "oh my... what's that... beautiful scarf around your neck... 14/10 a h*ckin good dog in a h*ckin good game @GoodDogsGame @dog_rates https://t.co/WRGiFL5m8X", 'truncated': False, 'display_text_range': [0, 130], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'GoodDogsGame', 'name': 'Good Dogs', 'id': 827593379009675264, 'id_str': '827593379009675264', 'indices': [106, 119]}, {'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [120, 130]}], 'urls': [], 'media': [{'id': 855122521141776384, 'id_str': '855122521141776384', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/media/C94BZwAXkAALQgP.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C94BZwAXkAALQgP.jpg', 'url': 'https://t.co/WRGiFL5m8X', 'display_url': 'pic.twitter.com/WRGiFL5m8X', 'expanded_url': 'https://twitter.com/frasercampbell_/status/855122533267460096/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 640, 'h': 1136, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 640, 'h': 1136, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 855122521141776384, 'id_str': '855122521141776384', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/media/C94BZwAXkAALQgP.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C94BZwAXkAALQgP.jpg', 'url': 'https://t.co/WRGiFL5m8X', 'display_url': 'pic.twitter.com/WRGiFL5m8X', 'expanded_url': 'https://twitter.com/frasercampbell_/status/855122533267460096/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 640, 'h': 1136, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 640, 'h': 1136, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 747554344434831360, 'id_str': '747554344434831360', 'name': 'fraser 🐙', 'screen_name': 'frasercampbell_', 'location': 'bottom of the ocean', 'description': 'marine biology and oceanography student 🦑 university of plymouth 🌊', 'url': None, 'entities': {'description': {'urls': []}}, 'protected': False, 'followers_count': 158, 'friends_count': 559, 'listed_count': 2, 'created_at': 'Mon Jun 27 22:16:59 +0000 2016', 'favourites_count': 9089, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': False, 'statuses_count': 2824, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1490715189368479745/f010RcsZ_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1490715189368479745/f010RcsZ_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/747554344434831360/1638747469', 'profile_link_color': '981CEB', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 36, 'favorite_count': 704, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 36, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Wed Apr 19 16:25:34 +0000 2017', 'id': 854732716440526848, 'id_str': '854732716440526848', 'full_text': 'This is Marlee. She fetched a flower and immediately requested that it be placed behind her ear. 12/10 elegant af https://t.co/nJztIEON5s', 'truncated': False, 'display_text_range': [0, 113], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 854732704503431168, 'id_str': '854732704503431168', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg', 'url': 'https://t.co/nJztIEON5s', 'display_url': 'pic.twitter.com/nJztIEON5s', 'expanded_url': 'https://twitter.com/dog_rates/status/854732716440526848/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1151, 'h': 2033, 'resize': 'fit'}, 'small': {'w': 385, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 679, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 854732704503431168, 'id_str': '854732704503431168', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg', 'url': 'https://t.co/nJztIEON5s', 'display_url': 'pic.twitter.com/nJztIEON5s', 'expanded_url': 'https://twitter.com/dog_rates/status/854732716440526848/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1151, 'h': 2033, 'resize': 'fit'}, 'small': {'w': 385, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 679, 'h': 1200, 'resize': 'fit'}}}, {'id': 854732704516116481, 'id_str': '854732704516116481', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C9ye3b6XkAE7pKW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9ye3b6XkAE7pKW.jpg', 'url': 'https://t.co/nJztIEON5s', 'display_url': 'pic.twitter.com/nJztIEON5s', 'expanded_url': 'https://twitter.com/dog_rates/status/854732716440526848/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}, {'id': 854732704516067330, 'id_str': '854732704516067330', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C9ye3b6W0AIAIcM.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9ye3b6W0AIAIcM.jpg', 'url': 'https://t.co/nJztIEON5s', 'display_url': 'pic.twitter.com/nJztIEON5s', 'expanded_url': 'https://twitter.com/dog_rates/status/854732716440526848/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}}}, {'id': 854732704860053506, 'id_str': '854732704860053506', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C9ye3dMXoAIUbXJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9ye3dMXoAIUbXJ.jpg', 'url': 'https://t.co/nJztIEON5s', 'display_url': 'pic.twitter.com/nJztIEON5s', 'expanded_url': 'https://twitter.com/dog_rates/status/854732716440526848/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5322, 'favorite_count': 20614, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Apr 18 23:50:52 +0000 2017', 'id': 854482394044301312, 'id_str': '854482394044301312', 'full_text': 'This is Arya. She can barely contain her excitement for more peanut butter. Also patriotic af. 13/10 https://t.co/AL4Ahm1Rm5', 'truncated': False, 'display_text_range': [0, 100], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 854482381390073856, 'id_str': '854482381390073856', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg', 'url': 'https://t.co/AL4Ahm1Rm5', 'display_url': 'pic.twitter.com/AL4Ahm1Rm5', 'expanded_url': 'https://twitter.com/dog_rates/status/854482394044301312/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 854482381390073856, 'id_str': '854482381390073856', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg', 'url': 'https://t.co/AL4Ahm1Rm5', 'display_url': 'pic.twitter.com/AL4Ahm1Rm5', 'expanded_url': 'https://twitter.com/dog_rates/status/854482394044301312/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5994, 'favorite_count': 26482, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Apr 18 16:05:17 +0000 2017', 'id': 854365224396361728, 'id_str': '854365224396361728', 'full_text': "This is Einstein. He's having a really good day. Hopes you are too. H*ckin nifty tongue. 13/10 would snug intensely https://t.co/mdaQhhfpv6", 'truncated': False, 'display_text_range': [0, 115], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 854365212241043457, 'id_str': '854365212241043457', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg', 'url': 'https://t.co/mdaQhhfpv6', 'display_url': 'pic.twitter.com/mdaQhhfpv6', 'expanded_url': 'https://twitter.com/dog_rates/status/854365224396361728/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 854365212241043457, 'id_str': '854365212241043457', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg', 'url': 'https://t.co/mdaQhhfpv6', 'display_url': 'pic.twitter.com/mdaQhhfpv6', 'expanded_url': 'https://twitter.com/dog_rates/status/854365224396361728/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 854365212249530368, 'id_str': '854365212249530368', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/C9tQokiVoAAJaJn.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9tQokiVoAAJaJn.jpg', 'url': 'https://t.co/mdaQhhfpv6', 'display_url': 'pic.twitter.com/mdaQhhfpv6', 'expanded_url': 'https://twitter.com/dog_rates/status/854365224396361728/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4132, 'favorite_count': 17141, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Apr 17 23:52:16 +0000 2017', 'id': 854120357044912130, 'id_str': '854120357044912130', 'full_text': 'Sometimes you guys remind me just how impactful a pupper can be. Cooper will be remembered as a good boy by so many. 14/10 rest easy friend https://t.co/oBL7LEJEzR', 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 854120347066548224, 'id_str': '854120347066548224', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C9px7ipVwAAAJCZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9px7ipVwAAAJCZ.jpg', 'url': 'https://t.co/oBL7LEJEzR', 'display_url': 'pic.twitter.com/oBL7LEJEzR', 'expanded_url': 'https://twitter.com/dog_rates/status/854120357044912130/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 750, 'h': 665, 'resize': 'fit'}, 'large': {'w': 750, 'h': 665, 'resize': 'fit'}, 'small': {'w': 680, 'h': 603, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 854120347066548224, 'id_str': '854120347066548224', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C9px7ipVwAAAJCZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9px7ipVwAAAJCZ.jpg', 'url': 'https://t.co/oBL7LEJEzR', 'display_url': 'pic.twitter.com/oBL7LEJEzR', 'expanded_url': 'https://twitter.com/dog_rates/status/854120357044912130/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 750, 'h': 665, 'resize': 'fit'}, 'large': {'w': 750, 'h': 665, 'resize': 'fit'}, 'small': {'w': 680, 'h': 603, 'resize': 'fit'}}}, {'id': 854120347376865280, 'id_str': '854120347376865280', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C9px7jzU0AAytsv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9px7jzU0AAytsv.jpg', 'url': 'https://t.co/oBL7LEJEzR', 'display_url': 'pic.twitter.com/oBL7LEJEzR', 'expanded_url': 'https://twitter.com/dog_rates/status/854120357044912130/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 750, 'h': 834, 'resize': 'fit'}, 'large': {'w': 750, 'h': 834, 'resize': 'fit'}, 'small': {'w': 612, 'h': 680, 'resize': 'fit'}}}, {'id': 854120347372617729, 'id_str': '854120347372617729', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C9px7jyUAAE-VDQ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9px7jyUAAE-VDQ.jpg', 'url': 'https://t.co/oBL7LEJEzR', 'display_url': 'pic.twitter.com/oBL7LEJEzR', 'expanded_url': 'https://twitter.com/dog_rates/status/854120357044912130/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 749, 'h': 228, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 207, 'resize': 'fit'}, 'medium': {'w': 749, 'h': 228, 'resize': 'fit'}}}, {'id': 854120347372732416, 'id_str': '854120347372732416', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg', 'url': 'https://t.co/oBL7LEJEzR', 'display_url': 'pic.twitter.com/oBL7LEJEzR', 'expanded_url': 'https://twitter.com/dog_rates/status/854120357044912130/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 675, 'resize': 'fit'}, 'large': {'w': 750, 'h': 745, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 745, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6569, 'favorite_count': 29134, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Apr 17 16:34:26 +0000 2017', 'id': 854010172552949760, 'id_str': '854010172552949760', 'full_text': "At first I thought this was a shy doggo, but it's actually a Rare Canadian Floofer Owl. Amateurs would confuse the two. 11/10 only send dogs https://t.co/TXdT3tmuYk", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 854010162683707392, 'id_str': '854010162683707392', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg', 'url': 'https://t.co/TXdT3tmuYk', 'display_url': 'pic.twitter.com/TXdT3tmuYk', 'expanded_url': 'https://twitter.com/dog_rates/status/854010172552949760/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 857, 'resize': 'fit'}, 'small': {'w': 680, 'h': 485, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1462, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 854010162683707392, 'id_str': '854010162683707392', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg', 'url': 'https://t.co/TXdT3tmuYk', 'display_url': 'pic.twitter.com/TXdT3tmuYk', 'expanded_url': 'https://twitter.com/dog_rates/status/854010172552949760/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 857, 'resize': 'fit'}, 'small': {'w': 680, 'h': 485, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1462, 'resize': 'fit'}}}, {'id': 854010162683760643, 'id_str': '854010162683760643', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C9oNt91W0AMQ7fk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9oNt91W0AMQ7fk.jpg', 'url': 'https://t.co/TXdT3tmuYk', 'display_url': 'pic.twitter.com/TXdT3tmuYk', 'expanded_url': 'https://twitter.com/dog_rates/status/854010172552949760/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2783, 'favorite_count': 14792, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Apr 17 00:03:50 +0000 2017', 'id': 853760880890318849, 'id_str': '853760880890318849', 'full_text': "Say hello to Alice. I'm told she enjoys car rides and smells good. 12/10 would give her everything she could ever want https://t.co/yT4vw8y77x", 'truncated': False, 'display_text_range': [0, 118], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 853760873545973760, 'id_str': '853760873545973760', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg', 'url': 'https://t.co/yT4vw8y77x', 'display_url': 'pic.twitter.com/yT4vw8y77x', 'expanded_url': 'https://twitter.com/dog_rates/status/853760880890318849/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 853760873545973760, 'id_str': '853760873545973760', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg', 'url': 'https://t.co/yT4vw8y77x', 'display_url': 'pic.twitter.com/yT4vw8y77x', 'expanded_url': 'https://twitter.com/dog_rates/status/853760880890318849/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5102, 'favorite_count': 25996, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Apr 16 16:00:07 +0000 2017', 'id': 853639147608842240, 'id_str': '853639147608842240', 'full_text': "A photographer took pictures before and after he told his bunny he's a good boy. Here are the results. 13/10 https://t.co/wiQZIsaWUe", 'truncated': False, 'display_text_range': [0, 108], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 853639138628837376, 'id_str': '853639138628837376', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg', 'url': 'https://t.co/wiQZIsaWUe', 'display_url': 'pic.twitter.com/wiQZIsaWUe', 'expanded_url': 'https://twitter.com/dog_rates/status/853639147608842240/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1537, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 853639138628837376, 'id_str': '853639138628837376', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg', 'url': 'https://t.co/wiQZIsaWUe', 'display_url': 'pic.twitter.com/wiQZIsaWUe', 'expanded_url': 'https://twitter.com/dog_rates/status/853639147608842240/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1537, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}}}, {'id': 853639138758844416, 'id_str': '853639138758844416', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/C9i8RiAXYAAlbwZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9i8RiAXYAAlbwZ.jpg', 'url': 'https://t.co/wiQZIsaWUe', 'display_url': 'pic.twitter.com/wiQZIsaWUe', 'expanded_url': 'https://twitter.com/dog_rates/status/853639147608842240/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1537, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 8829, 'favorite_count': 31427, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Apr 15 17:32:18 +0000 2017', 'id': 853299958564483072, 'id_str': '853299958564483072', 'full_text': "This is Rumpole. He'll be your Uber driver this evening. Won't start driving until you buckle pup. 13/10 h*ckin safe good boy https://t.co/EX9Z3EXlVP", 'truncated': False, 'display_text_range': [0, 125], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 853299949064388608, 'id_str': '853299949064388608', 'indices': [126, 149], 'media_url': 'http://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg', 'url': 'https://t.co/EX9Z3EXlVP', 'display_url': 'pic.twitter.com/EX9Z3EXlVP', 'expanded_url': 'https://twitter.com/dog_rates/status/853299958564483072/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 853299949064388608, 'id_str': '853299949064388608', 'indices': [126, 149], 'media_url': 'http://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg', 'url': 'https://t.co/EX9Z3EXlVP', 'display_url': 'pic.twitter.com/EX9Z3EXlVP', 'expanded_url': 'https://twitter.com/dog_rates/status/853299958564483072/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 853299949060149248, 'id_str': '853299949060149248', 'indices': [126, 149], 'media_url': 'http://pbs.twimg.com/media/C9eHyF6W0AAYH34.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9eHyF6W0AAYH34.jpg', 'url': 'https://t.co/EX9Z3EXlVP', 'display_url': 'pic.twitter.com/EX9Z3EXlVP', 'expanded_url': 'https://twitter.com/dog_rates/status/853299958564483072/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3159, 'favorite_count': 14116, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Apr 14 17:27:40 +0000 2017', 'id': 852936405516943360, 'id_str': '852936405516943360', 'full_text': "RT @dog_rates: I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Tue Feb 14 23:43:18 +0000 2017', 'id': 831650051525054464, 'id_str': '831650051525054464', 'full_text': "I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t.co/piiX0ke8Z6 https://t.co/1UHrKcaCiO", 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/piiX0ke8Z6', 'expanded_url': 'http://www.gofundme.com/bluethewhitehusky', 'display_url': 'gofundme.com/bluethewhitehu…', 'indices': [115, 138]}], 'media': [{'id': 831650039864885250, 'id_str': '831650039864885250', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg', 'url': 'https://t.co/1UHrKcaCiO', 'display_url': 'pic.twitter.com/1UHrKcaCiO', 'expanded_url': 'https://twitter.com/dog_rates/status/831650051525054464/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 692, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1000, 'h': 1734, 'resize': 'fit'}, 'small': {'w': 392, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 831650039864885250, 'id_str': '831650039864885250', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg', 'url': 'https://t.co/1UHrKcaCiO', 'display_url': 'pic.twitter.com/1UHrKcaCiO', 'expanded_url': 'https://twitter.com/dog_rates/status/831650051525054464/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 692, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1000, 'h': 1734, 'resize': 'fit'}, 'small': {'w': 392, 'h': 680, 'resize': 'fit'}}}, {'id': 831650039856525314, 'id_str': '831650039856525314', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C4qdThMWcAI9jUg.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4qdThMWcAI9jUg.jpg', 'url': 'https://t.co/1UHrKcaCiO', 'display_url': 'pic.twitter.com/1UHrKcaCiO', 'expanded_url': 'https://twitter.com/dog_rates/status/831650051525054464/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 670, 'resize': 'fit'}, 'large': {'w': 1000, 'h': 985, 'resize': 'fit'}, 'medium': {'w': 1000, 'h': 985, 'resize': 'fit'}}}, {'id': 831650039869083650, 'id_str': '831650039869083650', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C4qdThPWEAIk9qP.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4qdThPWEAIk9qP.jpg', 'url': 'https://t.co/1UHrKcaCiO', 'display_url': 'pic.twitter.com/1UHrKcaCiO', 'expanded_url': 'https://twitter.com/dog_rates/status/831650051525054464/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 750, 'h': 1000, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 1000, 'resize': 'fit'}}}, {'id': 831650039864885249, 'id_str': '831650039864885249', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C4qdThOWAAEW5B9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4qdThOWAAEW5B9.jpg', 'url': 'https://t.co/1UHrKcaCiO', 'display_url': 'pic.twitter.com/1UHrKcaCiO', 'expanded_url': 'https://twitter.com/dog_rates/status/831650051525054464/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1000, 'h': 1333, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1782, 'favorite_count': 6659, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 1782, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Fri Apr 14 15:51:39 +0000 2017', 'id': 852912242202992640, 'id_str': '852912242202992640', 'full_text': "Meet Benny. He likes being adorable and making fun of you while you're on the trampoline. 12/10 let's help him out\n\nhttps://t.co/aVMjBqAy1x https://t.co/7gx2LksT3U", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/aVMjBqAy1x', 'expanded_url': 'https://www.gofundme.com/bennys-medical-bills', 'display_url': 'gofundme.com/bennys-medical…', 'indices': [116, 139]}], 'media': [{'id': 852912235101921280, 'id_str': '852912235101921280', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg', 'url': 'https://t.co/7gx2LksT3U', 'display_url': 'pic.twitter.com/7gx2LksT3U', 'expanded_url': 'https://twitter.com/dog_rates/status/852912242202992640/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 600, 'h': 400, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 600, 'h': 400, 'resize': 'fit'}, 'large': {'w': 600, 'h': 400, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 852912235101921280, 'id_str': '852912235101921280', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg', 'url': 'https://t.co/7gx2LksT3U', 'display_url': 'pic.twitter.com/7gx2LksT3U', 'expanded_url': 'https://twitter.com/dog_rates/status/852912242202992640/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 600, 'h': 400, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 600, 'h': 400, 'resize': 'fit'}, 'large': {'w': 600, 'h': 400, 'resize': 'fit'}}}, {'id': 852912235122786304, 'id_str': '852912235122786304', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C9YnKK8UAAAkQlu.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9YnKK8UAAAkQlu.jpg', 'url': 'https://t.co/7gx2LksT3U', 'display_url': 'pic.twitter.com/7gx2LksT3U', 'expanded_url': 'https://twitter.com/dog_rates/status/852912242202992640/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1024, 'h': 968, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 968, 'resize': 'fit'}, 'small': {'w': 680, 'h': 643, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1591, 'favorite_count': 8222, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Apr 13 23:59:28 +0000 2017', 'id': 852672615818899456, 'id_str': '852672615818899456', 'full_text': "This is Aspen. She's never tasted a stick so succulent. On the verge of tears. A face of pure appreciation. 12/10 https://t.co/VlyBzOXHEW", 'truncated': False, 'display_text_range': [0, 113], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 852672601419911169, 'id_str': '852672601419911169', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg', 'url': 'https://t.co/VlyBzOXHEW', 'display_url': 'pic.twitter.com/VlyBzOXHEW', 'expanded_url': 'https://twitter.com/dog_rates/status/852672615818899456/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1364, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 799, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 852672601419911169, 'id_str': '852672601419911169', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg', 'url': 'https://t.co/VlyBzOXHEW', 'display_url': 'pic.twitter.com/VlyBzOXHEW', 'expanded_url': 'https://twitter.com/dog_rates/status/852672615818899456/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1364, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 799, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1903, 'favorite_count': 13602, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Apr 13 16:05:56 +0000 2017', 'id': 852553447878664193, 'id_str': '852553447878664193', 'full_text': 'This is Jarod. He likes having his belly brushed. Tongue ejects when you hit the right spot. 13/10 downright h*ckin adorable https://t.co/ArnxkyD2kC', 'truncated': False, 'display_text_range': [0, 124], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 852553437929721865, 'id_str': '852553437929721865', 'indices': [125, 148], 'media_url': 'http://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg', 'url': 'https://t.co/ArnxkyD2kC', 'display_url': 'pic.twitter.com/ArnxkyD2kC', 'expanded_url': 'https://twitter.com/dog_rates/status/852553447878664193/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1537, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 852553437929721865, 'id_str': '852553437929721865', 'indices': [125, 148], 'media_url': 'http://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg', 'url': 'https://t.co/ArnxkyD2kC', 'display_url': 'pic.twitter.com/ArnxkyD2kC', 'expanded_url': 'https://twitter.com/dog_rates/status/852553447878664193/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1537, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}}}, {'id': 852553437912997889, 'id_str': '852553437912997889', 'indices': [125, 148], 'media_url': 'http://pbs.twimg.com/media/C9Tg1bLXoAEg_sd.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9Tg1bLXoAEg_sd.jpg', 'url': 'https://t.co/ArnxkyD2kC', 'display_url': 'pic.twitter.com/ArnxkyD2kC', 'expanded_url': 'https://twitter.com/dog_rates/status/852553447878664193/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1537, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3099, 'favorite_count': 14840, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Apr 13 00:03:59 +0000 2017', 'id': 852311364735569921, 'id_str': '852311364735569921', 'full_text': "This is Wiggles. She would like you to spot her. Probably won't need your help but just in case. 13/10 powerful as h*ck https://t.co/2d370P0OEg", 'truncated': False, 'display_text_range': [0, 119], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 852311356040765442, 'id_str': '852311356040765442', 'indices': [120, 143], 'media_url': 'http://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg', 'url': 'https://t.co/2d370P0OEg', 'display_url': 'pic.twitter.com/2d370P0OEg', 'expanded_url': 'https://twitter.com/dog_rates/status/852311364735569921/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2047, 'h': 1429, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 838, 'resize': 'fit'}, 'small': {'w': 680, 'h': 475, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 852311356040765442, 'id_str': '852311356040765442', 'indices': [120, 143], 'media_url': 'http://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg', 'url': 'https://t.co/2d370P0OEg', 'display_url': 'pic.twitter.com/2d370P0OEg', 'expanded_url': 'https://twitter.com/dog_rates/status/852311364735569921/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2047, 'h': 1429, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 838, 'resize': 'fit'}, 'small': {'w': 680, 'h': 475, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 8836, 'favorite_count': 30259, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Apr 12 18:25:07 +0000 2017', 'id': 852226086759018497, 'id_str': '852226086759018497', 'full_text': "Meet General. He wasn't content with the quality of his room. Requested to pupgrade, but was ignored. 14/10 look who just lost a customer https://t.co/NP5JW8LnmW", 'truncated': False, 'display_text_range': [0, 137], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 852223481894903808, 'id_str': '852223481894903808', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/852223481894903808/pu/img/JWNq40ol4DXvHoUP.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/852223481894903808/pu/img/JWNq40ol4DXvHoUP.jpg', 'url': 'https://t.co/NP5JW8LnmW', 'display_url': 'pic.twitter.com/NP5JW8LnmW', 'expanded_url': 'https://twitter.com/dog_rates/status/852226086759018497/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}, 'large': {'w': 1280, 'h': 720, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 852223481894903808, 'id_str': '852223481894903808', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/852223481894903808/pu/img/JWNq40ol4DXvHoUP.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/852223481894903808/pu/img/JWNq40ol4DXvHoUP.jpg', 'url': 'https://t.co/NP5JW8LnmW', 'display_url': 'pic.twitter.com/NP5JW8LnmW', 'expanded_url': 'https://twitter.com/dog_rates/status/852226086759018497/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}, 'large': {'w': 1280, 'h': 720, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [16, 9], 'duration_millis': 77200, 'variants': [{'bitrate': 2176000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/852223481894903808/pu/vid/1280x720/_PATbQEuOoF0dueL.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/852223481894903808/pu/pl/pUNWBDtVBDQVOVM1.m3u8'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/852223481894903808/pu/vid/320x180/LBQSmxJl5tbJWcuD.mp4'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/852223481894903808/pu/vid/640x360/9SJubiIX_5LRni_C.mp4'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6069, 'favorite_count': 18297, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Apr 12 16:00:27 +0000 2017', 'id': 852189679701164033, 'id_str': '852189679701164033', 'full_text': 'This is Sailor. He has collected the best dirt in the area. As any good boy would. Under the impression you know what to do next. 12/10 https://t.co/jrFzScKWEG', 'truncated': False, 'display_text_range': [0, 135], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 852189646159327233, 'id_str': '852189646159327233', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg', 'url': 'https://t.co/jrFzScKWEG', 'display_url': 'pic.twitter.com/jrFzScKWEG', 'expanded_url': 'https://twitter.com/dog_rates/status/852189679701164033/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 852189646159327233, 'id_str': '852189646159327233', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg', 'url': 'https://t.co/jrFzScKWEG', 'display_url': 'pic.twitter.com/jrFzScKWEG', 'expanded_url': 'https://twitter.com/dog_rates/status/852189679701164033/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1414, 'favorite_count': 10550, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Apr 11 00:24:08 +0000 2017', 'id': 851591660324737024, 'id_str': '851591660324737024', 'full_text': "Oh jeez u did me quite the spook little fella. We normally don't rate triceratops but this one seems suspiciously good. 11/10 would pet well https://t.co/BMtfCmNbnS", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 851591634672287744, 'id_str': '851591634672287744', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg', 'url': 'https://t.co/BMtfCmNbnS', 'display_url': 'pic.twitter.com/BMtfCmNbnS', 'expanded_url': 'https://twitter.com/dog_rates/status/851591660324737024/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 851591634672287744, 'id_str': '851591634672287744', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg', 'url': 'https://t.co/BMtfCmNbnS', 'display_url': 'pic.twitter.com/BMtfCmNbnS', 'expanded_url': 'https://twitter.com/dog_rates/status/851591660324737024/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3116, 'favorite_count': 14919, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Apr 10 16:00:07 +0000 2017', 'id': 851464819735769094, 'id_str': '851464819735769094', 'full_text': "This is Iggy. He was a rescue dog killed in the Stockholm attack. His memorial started with a collar and four bones. It's grown a bit. 14/10 https://t.co/E4a0R9my1M", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 851464803281489921, 'id_str': '851464803281489921', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C9ECujJXUAEH98i.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9ECujJXUAEH98i.jpg', 'url': 'https://t.co/E4a0R9my1M', 'display_url': 'pic.twitter.com/E4a0R9my1M', 'expanded_url': 'https://twitter.com/dog_rates/status/851464819735769094/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1334, 'h': 1000, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 851464803281489921, 'id_str': '851464803281489921', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C9ECujJXUAEH98i.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9ECujJXUAEH98i.jpg', 'url': 'https://t.co/E4a0R9my1M', 'display_url': 'pic.twitter.com/E4a0R9my1M', 'expanded_url': 'https://twitter.com/dog_rates/status/851464819735769094/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1334, 'h': 1000, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}, {'id': 851464803348623360, 'id_str': '851464803348623360', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg', 'url': 'https://t.co/E4a0R9my1M', 'display_url': 'pic.twitter.com/E4a0R9my1M', 'expanded_url': 'https://twitter.com/dog_rates/status/851464819735769094/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 545, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 749, 'h': 934, 'resize': 'fit'}, 'medium': {'w': 749, 'h': 934, 'resize': 'fit'}}}, {'id': 851464803373780993, 'id_str': '851464803373780993', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C9ECujfXkAEWIEF.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9ECujfXkAEWIEF.jpg', 'url': 'https://t.co/E4a0R9my1M', 'display_url': 'pic.twitter.com/E4a0R9my1M', 'expanded_url': 'https://twitter.com/dog_rates/status/851464819735769094/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'large': {'w': 960, 'h': 720, 'resize': 'fit'}, 'medium': {'w': 960, 'h': 720, 'resize': 'fit'}}}, {'id': 851464803294031872, 'id_str': '851464803294031872', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C9ECujMWsAA6Npg.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9ECujMWsAA6Npg.jpg', 'url': 'https://t.co/E4a0R9my1M', 'display_url': 'pic.twitter.com/E4a0R9my1M', 'expanded_url': 'https://twitter.com/dog_rates/status/851464819735769094/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 460, 'resize': 'fit'}, 'medium': {'w': 1080, 'h': 731, 'resize': 'fit'}, 'large': {'w': 1080, 'h': 731, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6289, 'favorite_count': 22212, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Apr 10 00:06:42 +0000 2017', 'id': 851224888060895234, 'id_str': '851224888060895234', 'full_text': 'Meet Snoop. His number one passion is sticking his head out of car windows, so he purchased some doggles. Stylish af. 13/10 happy travels https://t.co/iHYfZdz444', 'truncated': False, 'display_text_range': [0, 137], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 851224878485315584, 'id_str': '851224878485315584', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C9AohFoXoAAto0e.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9AohFoXoAAto0e.jpg', 'url': 'https://t.co/iHYfZdz444', 'display_url': 'pic.twitter.com/iHYfZdz444', 'expanded_url': 'https://twitter.com/dog_rates/status/851224888060895234/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 851224878485315584, 'id_str': '851224878485315584', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C9AohFoXoAAto0e.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9AohFoXoAAto0e.jpg', 'url': 'https://t.co/iHYfZdz444', 'display_url': 'pic.twitter.com/iHYfZdz444', 'expanded_url': 'https://twitter.com/dog_rates/status/851224888060895234/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 851224878476926977, 'id_str': '851224878476926977', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C9AohFmXoAEh9az.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9AohFmXoAEh9az.jpg', 'url': 'https://t.co/iHYfZdz444', 'display_url': 'pic.twitter.com/iHYfZdz444', 'expanded_url': 'https://twitter.com/dog_rates/status/851224888060895234/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 851224878485254149, 'id_str': '851224878485254149', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg', 'url': 'https://t.co/iHYfZdz444', 'display_url': 'pic.twitter.com/iHYfZdz444', 'expanded_url': 'https://twitter.com/dog_rates/status/851224888060895234/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 851224879567433728, 'id_str': '851224879567433728', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C9AohJqXcAA8-Of.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C9AohJqXcAA8-Of.jpg', 'url': 'https://t.co/iHYfZdz444', 'display_url': 'pic.twitter.com/iHYfZdz444', 'expanded_url': 'https://twitter.com/dog_rates/status/851224888060895234/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5156, 'favorite_count': 18978, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Apr 08 16:54:09 +0000 2017', 'id': 850753642995093505, 'id_str': '850753642995093505', 'full_text': 'This is Kyle. He made a joke about your shoes, then stuck his tongue out at you. Uncalled for. Step the h*ck up Kyle. 11/10 would forgive https://t.co/hLQ2Ilg2uN', 'truncated': False, 'display_text_range': [0, 137], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 850753625559322625, 'id_str': '850753625559322625', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg', 'url': 'https://t.co/hLQ2Ilg2uN', 'display_url': 'pic.twitter.com/hLQ2Ilg2uN', 'expanded_url': 'https://twitter.com/dog_rates/status/850753642995093505/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 850753625559322625, 'id_str': '850753625559322625', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg', 'url': 'https://t.co/hLQ2Ilg2uN', 'display_url': 'pic.twitter.com/hLQ2Ilg2uN', 'expanded_url': 'https://twitter.com/dog_rates/status/850753642995093505/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 850753625567756288, 'id_str': '850753625567756288', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C8576jtXgAA5HIi.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8576jtXgAA5HIi.jpg', 'url': 'https://t.co/hLQ2Ilg2uN', 'display_url': 'pic.twitter.com/hLQ2Ilg2uN', 'expanded_url': 'https://twitter.com/dog_rates/status/850753642995093505/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 8051, 'favorite_count': 28050, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Apr 07 16:10:12 +0000 2017', 'id': 850380195714523136, 'id_str': '850380195714523136', 'full_text': "This is Leo. He's a personal triathlon coach. Currently overseeing this athlete's push-pups. H*ckin brutal. 13/10 would do all he asks of me https://t.co/FXZQtBcnTO", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 850380153985355777, 'id_str': '850380153985355777', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/850380153985355777/pu/img/lFouhg-EZvJs8eMr.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/850380153985355777/pu/img/lFouhg-EZvJs8eMr.jpg', 'url': 'https://t.co/FXZQtBcnTO', 'display_url': 'pic.twitter.com/FXZQtBcnTO', 'expanded_url': 'https://twitter.com/dog_rates/status/850380195714523136/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'large': {'w': 640, 'h': 800, 'resize': 'fit'}, 'medium': {'w': 640, 'h': 800, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 850380153985355777, 'id_str': '850380153985355777', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/850380153985355777/pu/img/lFouhg-EZvJs8eMr.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/850380153985355777/pu/img/lFouhg-EZvJs8eMr.jpg', 'url': 'https://t.co/FXZQtBcnTO', 'display_url': 'pic.twitter.com/FXZQtBcnTO', 'expanded_url': 'https://twitter.com/dog_rates/status/850380195714523136/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'large': {'w': 640, 'h': 800, 'resize': 'fit'}, 'medium': {'w': 640, 'h': 800, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [4, 5], 'duration_millis': 11745, 'variants': [{'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/850380153985355777/pu/vid/512x640/dC9FQ0C9qjS1-EY4.mp4'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/850380153985355777/pu/vid/256x320/XI0LZIOnaHLYj1MS.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/850380153985355777/pu/pl/WHwPWTqDgzhgDyJs.m3u8'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2324, 'favorite_count': 12038, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Apr 07 13:04:55 +0000 2017', 'id': 850333567704068097, 'id_str': '850333567704068097', 'full_text': '@markhoppus MARK THAT DOG HAS SEEN AND EXPERIENCED MANY THINGS. PROBABLY LOST OTHER EAR DOING SOMETHING HEROIC. 13/10 HUG THE DOG HOPPUS', 'truncated': False, 'display_text_range': [12, 136], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'markhoppus', 'name': 'mark hoppus', 'id': 21955058, 'id_str': '21955058', 'indices': [0, 11]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 850328818778820608, 'in_reply_to_status_id_str': '850328818778820608', 'in_reply_to_user_id': 21955058, 'in_reply_to_user_id_str': '21955058', 'in_reply_to_screen_name': 'markhoppus', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 301, 'favorite_count': 3183, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Fri Apr 07 00:38:06 +0000 2017', 'id': 850145622816686080, 'id_str': '850145622816686080', 'full_text': "This is Riley. He's making new friends. Jubilant as h*ck for the fun times ahead. 11/10 for all pups pictured https://t.co/PCX25VV78l", 'truncated': False, 'display_text_range': [0, 109], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 850145600721047552, 'id_str': '850145600721047552', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C8xS62pW0AAcL8f.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8xS62pW0AAcL8f.jpg', 'url': 'https://t.co/PCX25VV78l', 'display_url': 'pic.twitter.com/PCX25VV78l', 'expanded_url': 'https://twitter.com/dog_rates/status/850145622816686080/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 850145600721047552, 'id_str': '850145600721047552', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C8xS62pW0AAcL8f.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8xS62pW0AAcL8f.jpg', 'url': 'https://t.co/PCX25VV78l', 'display_url': 'pic.twitter.com/PCX25VV78l', 'expanded_url': 'https://twitter.com/dog_rates/status/850145622816686080/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 850145601593511936, 'id_str': '850145601593511936', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg', 'url': 'https://t.co/PCX25VV78l', 'display_url': 'pic.twitter.com/PCX25VV78l', 'expanded_url': 'https://twitter.com/dog_rates/status/850145622816686080/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 850145605976510464, 'id_str': '850145605976510464', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C8xS7KOW0AAJMF4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8xS7KOW0AAJMF4.jpg', 'url': 'https://t.co/PCX25VV78l', 'display_url': 'pic.twitter.com/PCX25VV78l', 'expanded_url': 'https://twitter.com/dog_rates/status/850145622816686080/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 850145608061116416, 'id_str': '850145608061116416', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C8xS7R_XYAAxsJN.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8xS7R_XYAAxsJN.jpg', 'url': 'https://t.co/PCX25VV78l', 'display_url': 'pic.twitter.com/PCX25VV78l', 'expanded_url': 'https://twitter.com/dog_rates/status/850145622816686080/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1514, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 887, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 503, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3383, 'favorite_count': 15001, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Apr 06 16:18:05 +0000 2017', 'id': 850019790995546112, 'id_str': '850019790995546112', 'full_text': "Say hello to Boomer. He's a sandy pupper. Having a h*ckin blast. 12/10 would pet passionately https://t.co/ecb3LvExde", 'truncated': False, 'display_text_range': [0, 93], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 850019779427667968, 'id_str': '850019779427667968', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/C8vgfFzXkAAonQR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8vgfFzXkAAonQR.jpg', 'url': 'https://t.co/ecb3LvExde', 'display_url': 'pic.twitter.com/ecb3LvExde', 'expanded_url': 'https://twitter.com/dog_rates/status/850019790995546112/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 850019779427667968, 'id_str': '850019779427667968', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/C8vgfFzXkAAonQR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8vgfFzXkAAonQR.jpg', 'url': 'https://t.co/ecb3LvExde', 'display_url': 'pic.twitter.com/ecb3LvExde', 'expanded_url': 'https://twitter.com/dog_rates/status/850019790995546112/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 850019781193420801, 'id_str': '850019781193420801', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/C8vgfMYW0AEzNIc.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8vgfMYW0AEzNIc.jpg', 'url': 'https://t.co/ecb3LvExde', 'display_url': 'pic.twitter.com/ecb3LvExde', 'expanded_url': 'https://twitter.com/dog_rates/status/850019790995546112/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 850019783156400128, 'id_str': '850019783156400128', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg', 'url': 'https://t.co/ecb3LvExde', 'display_url': 'pic.twitter.com/ecb3LvExde', 'expanded_url': 'https://twitter.com/dog_rates/status/850019790995546112/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4354, 'favorite_count': 18718, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Apr 06 00:13:11 +0000 2017', 'id': 849776966551130114, 'id_str': '849776966551130114', 'full_text': 'Seriously guys? Again? We only rate dogs. Please stop submitting other things like this super good hammerhead shark. Thank you... 12/10 https://t.co/TCMC90mSOT', 'truncated': False, 'display_text_range': [0, 135], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 849776958493818880, 'id_str': '849776958493818880', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/C8sDpDVWAAACYRT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8sDpDVWAAACYRT.jpg', 'url': 'https://t.co/TCMC90mSOT', 'display_url': 'pic.twitter.com/TCMC90mSOT', 'expanded_url': 'https://twitter.com/dog_rates/status/849776966551130114/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 548, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1535, 'h': 1905, 'resize': 'fit'}, 'medium': {'w': 967, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 849776958493818880, 'id_str': '849776958493818880', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/C8sDpDVWAAACYRT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8sDpDVWAAACYRT.jpg', 'url': 'https://t.co/TCMC90mSOT', 'display_url': 'pic.twitter.com/TCMC90mSOT', 'expanded_url': 'https://twitter.com/dog_rates/status/849776966551130114/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 548, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1535, 'h': 1905, 'resize': 'fit'}, 'medium': {'w': 967, 'h': 1200, 'resize': 'fit'}}}, {'id': 849776958498058241, 'id_str': '849776958498058241', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg', 'url': 'https://t.co/TCMC90mSOT', 'display_url': 'pic.twitter.com/TCMC90mSOT', 'expanded_url': 'https://twitter.com/dog_rates/status/849776966551130114/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 528, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1535, 'h': 1978, 'resize': 'fit'}, 'medium': {'w': 931, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6793, 'favorite_count': 27839, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Apr 05 17:00:34 +0000 2017', 'id': 849668094696017920, 'id_str': '849668094696017920', 'full_text': "RT @dog_rates: This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sun Feb 19 01:23:00 +0000 2017', 'id': 833124694597443584, 'id_str': '833124694597443584', 'full_text': "This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https://t.co/zD97KYFaFa", 'truncated': False, 'display_text_range': [0, 118], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 833124662091542528, 'id_str': '833124662091542528', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C4_ad1GVcAAgvx6.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4_ad1GVcAAgvx6.jpg', 'url': 'https://t.co/zD97KYFaFa', 'display_url': 'pic.twitter.com/zD97KYFaFa', 'expanded_url': 'https://twitter.com/dog_rates/status/833124694597443584/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 833124662091542528, 'id_str': '833124662091542528', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C4_ad1GVcAAgvx6.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4_ad1GVcAAgvx6.jpg', 'url': 'https://t.co/zD97KYFaFa', 'display_url': 'pic.twitter.com/zD97KYFaFa', 'expanded_url': 'https://twitter.com/dog_rates/status/833124694597443584/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}, {'id': 833124662095679488, 'id_str': '833124662095679488', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C4_ad1HUkAAWbJp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4_ad1HUkAAWbJp.jpg', 'url': 'https://t.co/zD97KYFaFa', 'display_url': 'pic.twitter.com/zD97KYFaFa', 'expanded_url': 'https://twitter.com/dog_rates/status/833124694597443584/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}, {'id': 833124662099877889, 'id_str': '833124662099877889', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg', 'url': 'https://t.co/zD97KYFaFa', 'display_url': 'pic.twitter.com/zD97KYFaFa', 'expanded_url': 'https://twitter.com/dog_rates/status/833124694597443584/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1150, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 674, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4428, 'favorite_count': 18935, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 4428, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Wed Apr 05 00:04:08 +0000 2017', 'id': 849412302885593088, 'id_str': '849412302885593088', 'full_text': 'This is Noosh. He noticed you were in the shower and thought you could use some company. 12/10 h*ckin loyal https://t.co/Uq3ChFgWA3', 'truncated': False, 'display_text_range': [0, 107], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 849412289417494528, 'id_str': '849412289417494528', 'indices': [108, 131], 'media_url': 'http://pbs.twimg.com/media/C8m3-hKUwAAaNwY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8m3-hKUwAAaNwY.jpg', 'url': 'https://t.co/Uq3ChFgWA3', 'display_url': 'pic.twitter.com/Uq3ChFgWA3', 'expanded_url': 'https://twitter.com/dog_rates/status/849412302885593088/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 849412289417494528, 'id_str': '849412289417494528', 'indices': [108, 131], 'media_url': 'http://pbs.twimg.com/media/C8m3-hKUwAAaNwY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8m3-hKUwAAaNwY.jpg', 'url': 'https://t.co/Uq3ChFgWA3', 'display_url': 'pic.twitter.com/Uq3ChFgWA3', 'expanded_url': 'https://twitter.com/dog_rates/status/849412302885593088/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 849412289530925065, 'id_str': '849412289530925065', 'indices': [108, 131], 'media_url': 'http://pbs.twimg.com/media/C8m3-hlXkAk-_m-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8m3-hlXkAk-_m-.jpg', 'url': 'https://t.co/Uq3ChFgWA3', 'display_url': 'pic.twitter.com/Uq3ChFgWA3', 'expanded_url': 'https://twitter.com/dog_rates/status/849412302885593088/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}, {'id': 849412289535062021, 'id_str': '849412289535062021', 'indices': [108, 131], 'media_url': 'http://pbs.twimg.com/media/C8m3-hmWsAUmhkK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8m3-hmWsAUmhkK.jpg', 'url': 'https://t.co/Uq3ChFgWA3', 'display_url': 'pic.twitter.com/Uq3ChFgWA3', 'expanded_url': 'https://twitter.com/dog_rates/status/849412302885593088/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 849412289711153152, 'id_str': '849412289711153152', 'indices': [108, 131], 'media_url': 'http://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg', 'url': 'https://t.co/Uq3ChFgWA3', 'display_url': 'pic.twitter.com/Uq3ChFgWA3', 'expanded_url': 'https://twitter.com/dog_rates/status/849412302885593088/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2819, 'favorite_count': 14634, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Apr 04 19:03:06 +0000 2017', 'id': 849336543269576704, 'id_str': '849336543269576704', 'full_text': 'At first I thought this was a dog because of the sign, but it is clearly Wilson from Home Improvement. Please only send in dogs... 11/10 https://t.co/jqPk1BZ6xu', 'truncated': False, 'display_text_range': [0, 136], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 849336535245877248, 'id_str': '849336535245877248', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg', 'url': 'https://t.co/jqPk1BZ6xu', 'display_url': 'pic.twitter.com/jqPk1BZ6xu', 'expanded_url': 'https://twitter.com/dog_rates/status/849336543269576704/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1549, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 908, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 514, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 849336535245877248, 'id_str': '849336535245877248', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg', 'url': 'https://t.co/jqPk1BZ6xu', 'display_url': 'pic.twitter.com/jqPk1BZ6xu', 'expanded_url': 'https://twitter.com/dog_rates/status/849336543269576704/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1549, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 908, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 514, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1683, 'favorite_count': 10527, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Apr 04 00:12:06 +0000 2017', 'id': 849051919805034497, 'id_str': '849051919805034497', 'full_text': "This is Kevin. Kevin doesn't give a single h*ck. Will sit in the fountain if he wants to. 13/10 churlish af https://t.co/r6GjO6MbZz", 'truncated': False, 'display_text_range': [0, 107], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 849051911668064256, 'id_str': '849051911668064256', 'indices': [108, 131], 'media_url': 'http://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg', 'url': 'https://t.co/r6GjO6MbZz', 'display_url': 'pic.twitter.com/r6GjO6MbZz', 'expanded_url': 'https://twitter.com/dog_rates/status/849051919805034497/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 849051911668064256, 'id_str': '849051911668064256', 'indices': [108, 131], 'media_url': 'http://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg', 'url': 'https://t.co/r6GjO6MbZz', 'display_url': 'pic.twitter.com/r6GjO6MbZz', 'expanded_url': 'https://twitter.com/dog_rates/status/849051919805034497/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7599, 'favorite_count': 38890, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Apr 03 00:16:10 +0000 2017', 'id': 848690551926992896, 'id_str': '848690551926992896', 'full_text': 'Please stop sending in animals other than dogs. We only rate dogs. Not Furry Ecuadorian Sea Turtles. Thank you... 12/10 https://t.co/UOE79zb6VU', 'truncated': False, 'display_text_range': [0, 119], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 848690539105071104, 'id_str': '848690539105071104', 'indices': [120, 143], 'media_url': 'http://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg', 'url': 'https://t.co/UOE79zb6VU', 'display_url': 'pic.twitter.com/UOE79zb6VU', 'expanded_url': 'https://twitter.com/dog_rates/status/848690551926992896/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 848690539105071104, 'id_str': '848690539105071104', 'indices': [120, 143], 'media_url': 'http://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg', 'url': 'https://t.co/UOE79zb6VU', 'display_url': 'pic.twitter.com/UOE79zb6VU', 'expanded_url': 'https://twitter.com/dog_rates/status/848690551926992896/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3913, 'favorite_count': 23210, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Apr 02 00:03:26 +0000 2017', 'id': 848324959059550208, 'id_str': '848324959059550208', 'full_text': "Meet Odin. He's supposed to be giving directions but he'd rather look at u like that. Should probably buckle pup. 12/10 distracting as h*ck https://t.co/1pSqUbLQ5Z", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 848324954202439680, 'id_str': '848324954202439680', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg', 'url': 'https://t.co/1pSqUbLQ5Z', 'display_url': 'pic.twitter.com/1pSqUbLQ5Z', 'expanded_url': 'https://twitter.com/dog_rates/status/848324959059550208/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 848324954202439680, 'id_str': '848324954202439680', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg', 'url': 'https://t.co/1pSqUbLQ5Z', 'display_url': 'pic.twitter.com/1pSqUbLQ5Z', 'expanded_url': 'https://twitter.com/dog_rates/status/848324959059550208/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4140, 'favorite_count': 22767, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Apr 01 16:41:12 +0000 2017', 'id': 848213670039564288, 'id_str': '848213670039564288', 'full_text': 'Jerry just apuppologized to me. He said there was no ill-intent to the slippage. I overreacted I admit. Pupgraded to an 11/10 would pet', 'truncated': False, 'display_text_range': [0, 135], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 848212111729840128, 'in_reply_to_status_id_str': '848212111729840128', 'in_reply_to_user_id': 4196983835, 'in_reply_to_user_id_str': '4196983835', 'in_reply_to_screen_name': 'dog_rates', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 644, 'favorite_count': 7526, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sat Apr 01 16:35:01 +0000 2017', 'id': 848212111729840128, 'id_str': '848212111729840128', 'full_text': "This is Jerry. He's doing a distinguished tongue slip. Slightly patronizing tbh. You think you're better than us, Jerry? 6/10 hold me back https://t.co/DkOBbwulw1", 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 848212097242615808, 'id_str': '848212097242615808', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg', 'url': 'https://t.co/DkOBbwulw1', 'display_url': 'pic.twitter.com/DkOBbwulw1', 'expanded_url': 'https://twitter.com/dog_rates/status/848212111729840128/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1000, 'h': 667, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1000, 'h': 667, 'resize': 'fit'}, 'small': {'w': 680, 'h': 454, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 848212097242615808, 'id_str': '848212097242615808', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg', 'url': 'https://t.co/DkOBbwulw1', 'display_url': 'pic.twitter.com/DkOBbwulw1', 'expanded_url': 'https://twitter.com/dog_rates/status/848212111729840128/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1000, 'h': 667, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1000, 'h': 667, 'resize': 'fit'}, 'small': {'w': 680, 'h': 454, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2711, 'favorite_count': 14994, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Apr 01 01:08:10 +0000 2017', 'id': 847978865427394560, 'id_str': '847978865427394560', 'full_text': 'RT @dog_rates: This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.c…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Thu Feb 16 23:23:38 +0000 2017', 'id': 832369877331693569, 'id_str': '832369877331693569', 'full_text': 'This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.co/Dhdx5HnQ4d', 'truncated': False, 'display_text_range': [0, 112], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 832369869089800192, 'id_str': '832369869089800192', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg', 'url': 'https://t.co/Dhdx5HnQ4d', 'display_url': 'pic.twitter.com/Dhdx5HnQ4d', 'expanded_url': 'https://twitter.com/dog_rates/status/832369877331693569/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 832369869089800192, 'id_str': '832369869089800192', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg', 'url': 'https://t.co/Dhdx5HnQ4d', 'display_url': 'pic.twitter.com/Dhdx5HnQ4d', 'expanded_url': 'https://twitter.com/dog_rates/status/832369877331693569/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2911, 'favorite_count': 16028, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 2911, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sat Apr 01 00:39:12 +0000 2017', 'id': 847971574464610304, 'id_str': '847971574464610304', 'full_text': 'RT @basic_vacek_: I love my new mug easy 13/10 @dog_rates https://t.co/0bYtoL7Wwt', 'truncated': False, 'display_text_range': [0, 81], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'basic_vacek_', 'name': 'Gia 👩🏼\u200d🍳', 'id': 597064155, 'id_str': '597064155', 'indices': [3, 16]}, {'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [47, 57]}], 'urls': [], 'media': [{'id': 847970989635928064, 'id_str': '847970989635928064', 'indices': [58, 81], 'media_url': 'http://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg', 'url': 'https://t.co/0bYtoL7Wwt', 'display_url': 'pic.twitter.com/0bYtoL7Wwt', 'expanded_url': 'https://twitter.com/basic_vacek_/status/847971000004354048/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 847971000004354048, 'source_status_id_str': '847971000004354048', 'source_user_id': 597064155, 'source_user_id_str': '597064155'}]}, 'extended_entities': {'media': [{'id': 847970989635928064, 'id_str': '847970989635928064', 'indices': [58, 81], 'media_url': 'http://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg', 'url': 'https://t.co/0bYtoL7Wwt', 'display_url': 'pic.twitter.com/0bYtoL7Wwt', 'expanded_url': 'https://twitter.com/basic_vacek_/status/847971000004354048/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 847971000004354048, 'source_status_id_str': '847971000004354048', 'source_user_id': 597064155, 'source_user_id_str': '597064155'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sat Apr 01 00:36:55 +0000 2017', 'id': 847971000004354048, 'id_str': '847971000004354048', 'full_text': 'I love my new mug easy 13/10 @dog_rates https://t.co/0bYtoL7Wwt', 'truncated': False, 'display_text_range': [0, 39], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [29, 39]}], 'urls': [], 'media': [{'id': 847970989635928064, 'id_str': '847970989635928064', 'indices': [40, 63], 'media_url': 'http://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg', 'url': 'https://t.co/0bYtoL7Wwt', 'display_url': 'pic.twitter.com/0bYtoL7Wwt', 'expanded_url': 'https://twitter.com/basic_vacek_/status/847971000004354048/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 847970989635928064, 'id_str': '847970989635928064', 'indices': [40, 63], 'media_url': 'http://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg', 'url': 'https://t.co/0bYtoL7Wwt', 'display_url': 'pic.twitter.com/0bYtoL7Wwt', 'expanded_url': 'https://twitter.com/basic_vacek_/status/847971000004354048/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 597064155, 'id_str': '597064155', 'name': 'Gia 👩🏼\u200d🍳', 'screen_name': 'basic_vacek_', 'location': 'Denver, CO', 'description': 'birth is a curse and existence is a prison', 'url': 'https://t.co/9m94pPmcWv', 'entities': {'url': {'urls': [{'url': 'https://t.co/9m94pPmcWv', 'expanded_url': 'http://bakersgonnnabake.tumblr.com', 'display_url': 'bakersgonnnabake.tumblr.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 284, 'friends_count': 305, 'listed_count': 5, 'created_at': 'Sat Jun 02 01:50:13 +0000 2012', 'favourites_count': 93892, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': False, 'statuses_count': 20666, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '642D8B', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme10/bg.gif', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme10/bg.gif', 'profile_background_tile': True, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1520879621159366656/EVYtUELG_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1520879621159366656/EVYtUELG_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/597064155/1565550820', 'profile_link_color': '69085F', 'profile_sidebar_border_color': '65B0DA', 'profile_sidebar_fill_color': '7AC3EE', 'profile_text_color': '3D1957', 'profile_use_background_image': True, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'regular', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 394, 'favorite_count': 4016, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 394, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Apr 01 00:04:17 +0000 2017', 'id': 847962785489326080, 'id_str': '847962785489326080', 'full_text': "This is Georgie. He's very shy. Only puppears when called. Aggressively average at fetch. Unique front paws. Looks slippery. 10/10 would pet https://t.co/rcDs5LkiSj", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 847962765348052992, 'id_str': '847962765348052992', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg', 'url': 'https://t.co/rcDs5LkiSj', 'display_url': 'pic.twitter.com/rcDs5LkiSj', 'expanded_url': 'https://twitter.com/dog_rates/status/847962785489326080/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 889, 'resize': 'fit'}, 'small': {'w': 680, 'h': 504, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1518, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 847962765348052992, 'id_str': '847962765348052992', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg', 'url': 'https://t.co/rcDs5LkiSj', 'display_url': 'pic.twitter.com/rcDs5LkiSj', 'expanded_url': 'https://twitter.com/dog_rates/status/847962785489326080/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 889, 'resize': 'fit'}, 'small': {'w': 680, 'h': 504, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1518, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4559, 'favorite_count': 21683, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Mar 31 16:07:33 +0000 2017', 'id': 847842811428974592, 'id_str': '847842811428974592', 'full_text': 'This is Rontu. He is described as a pal, cuddle bug, protector and constant shadow. 12/10, but he needs your help\n\nhttps://t.co/zK4cpKPFfU https://t.co/7Xvoalr798', 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/zK4cpKPFfU', 'expanded_url': 'https://www.gofundme.com/help-save-rontu', 'display_url': 'gofundme.com/help-save-rontu', 'indices': [115, 138]}], 'media': [{'id': 847842804353032196, 'id_str': '847842804353032196', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg', 'url': 'https://t.co/7Xvoalr798', 'display_url': 'pic.twitter.com/7Xvoalr798', 'expanded_url': 'https://twitter.com/dog_rates/status/847842811428974592/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 600, 'h': 400, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 600, 'h': 400, 'resize': 'fit'}, 'large': {'w': 600, 'h': 400, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 847842804353032196, 'id_str': '847842804353032196', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg', 'url': 'https://t.co/7Xvoalr798', 'display_url': 'pic.twitter.com/7Xvoalr798', 'expanded_url': 'https://twitter.com/dog_rates/status/847842811428974592/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 600, 'h': 400, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 600, 'h': 400, 'resize': 'fit'}, 'large': {'w': 600, 'h': 400, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1186, 'favorite_count': 4997, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Mar 31 01:11:22 +0000 2017', 'id': 847617282490613760, 'id_str': '847617282490613760', 'full_text': '.@breaannanicolee PUPDATE: Cannon has a heart on his nose. Pupgraded to a 13/10', 'truncated': False, 'display_text_range': [18, 79], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'breaannanicolee', 'name': '☀️', 'id': 1046500110, 'id_str': '1046500110', 'indices': [1, 17]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 847606175596138505, 'in_reply_to_status_id_str': '847606175596138505', 'in_reply_to_user_id': 4196983835, 'in_reply_to_user_id_str': '4196983835', 'in_reply_to_screen_name': 'dog_rates', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 376, 'favorite_count': 6453, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Fri Mar 31 00:27:14 +0000 2017', 'id': 847606175596138505, 'id_str': '847606175596138505', 'full_text': "This is Cannon. He just heard something behind him. Fr*ckin frightened af. 12/10 don't look back just run https://t.co/WTPBWT6Ux1", 'truncated': False, 'display_text_range': [0, 105], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 847606161679331329, 'id_str': '847606161679331329', 'indices': [106, 129], 'media_url': 'http://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg', 'url': 'https://t.co/WTPBWT6Ux1', 'display_url': 'pic.twitter.com/WTPBWT6Ux1', 'expanded_url': 'https://twitter.com/dog_rates/status/847606175596138505/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 847606161679331329, 'id_str': '847606161679331329', 'indices': [106, 129], 'media_url': 'http://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg', 'url': 'https://t.co/WTPBWT6Ux1', 'display_url': 'pic.twitter.com/WTPBWT6Ux1', 'expanded_url': 'https://twitter.com/dog_rates/status/847606175596138505/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3075, 'favorite_count': 17305, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Mar 30 00:56:03 +0000 2017', 'id': 847251039262605312, 'id_str': '847251039262605312', 'full_text': "This is Furzey. He's doing an elevated sandy zoom. Adjusts ears to steer. 12/10 would pet mid flight https://t.co/zhbRIZQgnq", 'truncated': False, 'display_text_range': [0, 100], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 847251028009336833, 'id_str': '847251028009336833', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg', 'url': 'https://t.co/zhbRIZQgnq', 'display_url': 'pic.twitter.com/zhbRIZQgnq', 'expanded_url': 'https://twitter.com/dog_rates/status/847251039262605312/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 342, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1030, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 604, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 847251028009336833, 'id_str': '847251028009336833', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg', 'url': 'https://t.co/zhbRIZQgnq', 'display_url': 'pic.twitter.com/zhbRIZQgnq', 'expanded_url': 'https://twitter.com/dog_rates/status/847251039262605312/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 342, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1030, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 604, 'resize': 'fit'}}}, {'id': 847251028009295872, 'id_str': '847251028009295872', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/C8IKUjAUIAANj8z.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8IKUjAUIAANj8z.jpg', 'url': 'https://t.co/zhbRIZQgnq', 'display_url': 'pic.twitter.com/zhbRIZQgnq', 'expanded_url': 'https://twitter.com/dog_rates/status/847251039262605312/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 297, 'h': 297, 'resize': 'fit'}, 'medium': {'w': 297, 'h': 297, 'resize': 'fit'}, 'large': {'w': 297, 'h': 297, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3907, 'favorite_count': 18916, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Mar 29 18:43:12 +0000 2017', 'id': 847157206088847362, 'id_str': '847157206088847362', 'full_text': "Meet Daisy. She's been pup for adoption for months now but hasn't gotten any applications. 11/10 let's change that\n\nhttps://t.co/Jlb9L0m3J0 https://t.co/Eh7fGFuy6r", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/Jlb9L0m3J0', 'expanded_url': 'https://www.petfinder.com/petdetail/37334596', 'display_url': 'petfinder.com/petdetail/3733…', 'indices': [116, 139]}], 'media': [{'id': 847157199944208384, 'id_str': '847157199944208384', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C8G0_COW0AAxTJB.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8G0_COW0AAxTJB.jpg', 'url': 'https://t.co/Eh7fGFuy6r', 'display_url': 'pic.twitter.com/Eh7fGFuy6r', 'expanded_url': 'https://twitter.com/dog_rates/status/847157206088847362/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1105, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1886, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 626, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 847157199944208384, 'id_str': '847157199944208384', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C8G0_COW0AAxTJB.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8G0_COW0AAxTJB.jpg', 'url': 'https://t.co/Eh7fGFuy6r', 'display_url': 'pic.twitter.com/Eh7fGFuy6r', 'expanded_url': 'https://twitter.com/dog_rates/status/847157206088847362/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1105, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1886, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 626, 'h': 680, 'resize': 'fit'}}}, {'id': 847157199935811584, 'id_str': '847157199935811584', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg', 'url': 'https://t.co/Eh7fGFuy6r', 'display_url': 'pic.twitter.com/Eh7fGFuy6r', 'expanded_url': 'https://twitter.com/dog_rates/status/847157206088847362/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 458, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 807, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1378, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5241, 'favorite_count': 18329, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Mar 29 16:00:12 +0000 2017', 'id': 847116187444137987, 'id_str': '847116187444137987', 'full_text': 'Unbelievable... We. Only. Rate. Dogs. Please stop sending in other things like this Blossoming Flop Kangaroo. Thank you... 11/10 https://t.co/EeeErAbso0', 'truncated': False, 'display_text_range': [0, 128], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 847116177323253760, 'id_str': '847116177323253760', 'indices': [129, 152], 'media_url': 'http://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg', 'url': 'https://t.co/EeeErAbso0', 'display_url': 'pic.twitter.com/EeeErAbso0', 'expanded_url': 'https://twitter.com/dog_rates/status/847116187444137987/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 847116177323253760, 'id_str': '847116177323253760', 'indices': [129, 152], 'media_url': 'http://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg', 'url': 'https://t.co/EeeErAbso0', 'display_url': 'pic.twitter.com/EeeErAbso0', 'expanded_url': 'https://twitter.com/dog_rates/status/847116187444137987/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2868, 'favorite_count': 19823, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Mar 29 00:01:05 +0000 2017', 'id': 846874817362120707, 'id_str': '846874817362120707', 'full_text': "This is Tuck. As you can see, he's rather h*ckin rare. Taken seriously until his legs are seen. Tail stuck in a permanent zoom. 13/10 https://t.co/P7PBGqrKSe", 'truncated': False, 'display_text_range': [0, 133], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 846874803135021056, 'id_str': '846874803135021056', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C8C0JYIXgAAMla-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8C0JYIXgAAMla-.jpg', 'url': 'https://t.co/P7PBGqrKSe', 'display_url': 'pic.twitter.com/P7PBGqrKSe', 'expanded_url': 'https://twitter.com/dog_rates/status/846874817362120707/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 846874803135021056, 'id_str': '846874803135021056', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C8C0JYIXgAAMla-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8C0JYIXgAAMla-.jpg', 'url': 'https://t.co/P7PBGqrKSe', 'display_url': 'pic.twitter.com/P7PBGqrKSe', 'expanded_url': 'https://twitter.com/dog_rates/status/846874817362120707/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 846874803130781696, 'id_str': '846874803130781696', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg', 'url': 'https://t.co/P7PBGqrKSe', 'display_url': 'pic.twitter.com/P7PBGqrKSe', 'expanded_url': 'https://twitter.com/dog_rates/status/846874817362120707/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3539, 'favorite_count': 18568, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Mar 28 00:07:32 +0000 2017', 'id': 846514051647705089, 'id_str': '846514051647705089', 'full_text': "This is Barney. He's an elder doggo. Hitches a ride when he gets tired. Waves goodbye before he leaves. 13/10 please come back soon https://t.co/cFAasDXauK", 'truncated': False, 'display_text_range': [0, 131], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 846514034648190977, 'id_str': '846514034648190977', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C79sB4yWkAEBJx_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C79sB4yWkAEBJx_.jpg', 'url': 'https://t.co/cFAasDXauK', 'display_url': 'pic.twitter.com/cFAasDXauK', 'expanded_url': 'https://twitter.com/dog_rates/status/846514051647705089/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 846514034648190977, 'id_str': '846514034648190977', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C79sB4yWkAEBJx_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C79sB4yWkAEBJx_.jpg', 'url': 'https://t.co/cFAasDXauK', 'display_url': 'pic.twitter.com/cFAasDXauK', 'expanded_url': 'https://twitter.com/dog_rates/status/846514051647705089/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 846514034644074497, 'id_str': '846514034644074497', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg', 'url': 'https://t.co/cFAasDXauK', 'display_url': 'pic.twitter.com/cFAasDXauK', 'expanded_url': 'https://twitter.com/dog_rates/status/846514051647705089/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 846514035432603650, 'id_str': '846514035432603650', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C79sB7tXwAIKkYW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C79sB7tXwAIKkYW.jpg', 'url': 'https://t.co/cFAasDXauK', 'display_url': 'pic.twitter.com/cFAasDXauK', 'expanded_url': 'https://twitter.com/dog_rates/status/846514051647705089/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 10339, 'favorite_count': 41056, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Mar 27 23:35:28 +0000 2017', 'id': 846505985330044928, 'id_str': '846505985330044928', 'full_text': 'THIS WAS NOT HIS FAULT HE HAD NO IDEA. 11/10 STILL A VERY GOOD DOG https://t.co/GJ8rozumsy', 'truncated': False, 'display_text_range': [0, 66], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/GJ8rozumsy', 'expanded_url': 'https://twitter.com/shomaristone/status/846484798663245829', 'display_url': 'twitter.com/shomaristone/s…', 'indices': [67, 90]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'quoted_status_id': 846484798663245829, 'quoted_status_id_str': '846484798663245829', 'quoted_status_permalink': {'url': 'https://t.co/GJ8rozumsy', 'expanded': 'https://twitter.com/shomaristone/status/846484798663245829', 'display': 'twitter.com/shomaristone/s…'}, 'quoted_status': {'created_at': 'Mon Mar 27 22:11:17 +0000 2017', 'id': 846484798663245829, 'id_str': '846484798663245829', 'full_text': 'Dog Shipped to New York City With $1 Million of Heroin: @nbcwashington \nhttps://t.co/LS4IE07R3J', 'truncated': False, 'display_text_range': [0, 95], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'nbcwashington', 'name': 'NBC4 Washington', 'id': 14980820, 'id_str': '14980820', 'indices': [56, 70]}], 'urls': [{'url': 'https://t.co/LS4IE07R3J', 'expanded_url': 'http://www.nbcwashington.com/news/national-international/dog-heroin-bust-new-york-avi-labrador-puerto-rico-jfk-airport-417188193.html', 'display_url': 'nbcwashington.com/news/national-…', 'indices': [72, 95]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 264924050, 'id_str': '264924050', 'name': 'Shomari Stone', 'screen_name': 'shomaristone', 'location': 'Washington, DC', 'description': 'CNBC Correspondent @TheNewsOnCNBC🇺🇸The News With Shepard Smith. Weeknights 7pm ET🌎7X Emmy Award, 2X Murrow Winner, @umich〽️@StJohnsCHS Alum.RT no endorsement', 'url': 'https://t.co/JEGbwFNlsl', 'entities': {'url': {'urls': [{'url': 'https://t.co/JEGbwFNlsl', 'expanded_url': 'https://www.facebook.com/ShomariStoneNBC', 'display_url': 'facebook.com/ShomariStoneNBC', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 236572, 'friends_count': 179018, 'listed_count': 1528, 'created_at': 'Sat Mar 12 17:51:17 +0000 2011', 'favourites_count': 79984, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 27327, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': 'ACDED6', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': True, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1518698686146043908/0y18939V_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1518698686146043908/0y18939V_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/264924050/1662249029', 'profile_link_color': '038543', 'profile_sidebar_border_color': 'FFFFFF', 'profile_sidebar_fill_color': 'DDEEF6', 'profile_text_color': '333333', 'profile_use_background_image': True, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 82, 'favorite_count': 308, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'retweet_count': 2752, 'favorite_count': 13033, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Mar 27 00:15:53 +0000 2017', 'id': 846153765933735936, 'id_str': '846153765933735936', 'full_text': "This is Vixen. He really likes bananas. Steals them when he thinks nobody's watching. 13/10 opportunistic af https://t.co/a0CkS5ExFR", 'truncated': False, 'display_text_range': [0, 108], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 846153751811387393, 'id_str': '846153751811387393', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg', 'url': 'https://t.co/a0CkS5ExFR', 'display_url': 'pic.twitter.com/a0CkS5ExFR', 'expanded_url': 'https://twitter.com/dog_rates/status/846153765933735936/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1365, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 846153751811387393, 'id_str': '846153751811387393', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg', 'url': 'https://t.co/a0CkS5ExFR', 'display_url': 'pic.twitter.com/a0CkS5ExFR', 'expanded_url': 'https://twitter.com/dog_rates/status/846153765933735936/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1365, 'resize': 'fit'}}}, {'id': 846153751807193088, 'id_str': '846153751807193088', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/C74kWqnU8AAScd9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C74kWqnU8AAScd9.jpg', 'url': 'https://t.co/a0CkS5ExFR', 'display_url': 'pic.twitter.com/a0CkS5ExFR', 'expanded_url': 'https://twitter.com/dog_rates/status/846153765933735936/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1365, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 8145, 'favorite_count': 29005, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Mar 26 23:20:02 +0000 2017', 'id': 846139713627017216, 'id_str': '846139713627017216', 'full_text': 'SHE DID AN ICY ZOOM AND KNEW WHEN TO PUT ON THE BRAKES 13/10 CANCEL THE GAME THIS IS ALL WE NEED https://t.co/4ctgpGcqAd', 'truncated': False, 'display_text_range': [0, 96], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/4ctgpGcqAd', 'expanded_url': 'https://twitter.com/csncapitals/status/846088479142531073', 'display_url': 'twitter.com/csncapitals/st…', 'indices': [97, 120]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'quoted_status_id': 846088479142531073, 'quoted_status_id_str': '846088479142531073', 'quoted_status_permalink': {'url': 'https://t.co/4ctgpGcqAd', 'expanded': 'https://twitter.com/csncapitals/status/846088479142531073', 'display': 'twitter.com/csncapitals/st…'}, 'quoted_status': {'created_at': 'Sun Mar 26 19:56:27 +0000 2017', 'id': 846088479142531073, 'id_str': '846088479142531073', 'full_text': 'When the dog wants to play catch with the puck on the ice at Verizon Center, you play catch with the dog on the ice at Verizon Center. 🐶 https://t.co/UWMZ75TVmE', 'truncated': False, 'display_text_range': [0, 136], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 846088307100418048, 'id_str': '846088307100418048', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/846088307100418048/pu/img/iY-NlHAukNyIofz2.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/846088307100418048/pu/img/iY-NlHAukNyIofz2.jpg', 'url': 'https://t.co/UWMZ75TVmE', 'display_url': 'pic.twitter.com/UWMZ75TVmE', 'expanded_url': 'https://twitter.com/CSNCapitals/status/846088479142531073/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}, 'large': {'w': 1280, 'h': 720, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 846088307100418048, 'id_str': '846088307100418048', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/846088307100418048/pu/img/iY-NlHAukNyIofz2.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/846088307100418048/pu/img/iY-NlHAukNyIofz2.jpg', 'url': 'https://t.co/UWMZ75TVmE', 'display_url': 'pic.twitter.com/UWMZ75TVmE', 'expanded_url': 'https://twitter.com/CSNCapitals/status/846088479142531073/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}, 'large': {'w': 1280, 'h': 720, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [16, 9], 'duration_millis': 51900, 'variants': [{'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/846088307100418048/pu/vid/640x360/fFdjYrQeMvzlS9eR.mp4'}, {'bitrate': 2176000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/846088307100418048/pu/vid/1280x720/QBh1p83XLKGQXFtM.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/846088307100418048/pu/pl/W1YmFpRcMYFm2qNW.m3u8'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/846088307100418048/pu/vid/320x180/BGpnEXgJ4oyxWfcc.mp4'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="https://buffer.com" rel="nofollow">Buffer</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 2319349099, 'id_str': '2319349099', 'name': 'NBC Sports Capitals', 'screen_name': 'NBCSCapitals', 'location': '', 'description': 'Your inside source for all of the latest news and conversation surrounding the Washington Capitals.', 'url': 'https://t.co/w51G4sBlgR', 'entities': {'url': {'urls': [{'url': 'https://t.co/w51G4sBlgR', 'expanded_url': 'http://www.nbcsportswashington.com/capitals', 'display_url': 'nbcsportswashington.com/capitals', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 38730, 'friends_count': 759, 'listed_count': 567, 'created_at': 'Thu Jan 30 18:18:19 +0000 2014', 'favourites_count': 3180, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 53597, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': 'FFFFFF', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1367600387042197511/-iCQQXRi_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1367600387042197511/-iCQQXRi_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/2319349099/1652711103', 'profile_link_color': 'FE2809', 'profile_sidebar_border_color': 'FFFFFF', 'profile_sidebar_fill_color': 'DDEEF6', 'profile_text_color': '333333', 'profile_use_background_image': True, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 21171, 'favorite_count': 43722, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'retweet_count': 9139, 'favorite_count': 28726, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Mar 26 16:55:29 +0000 2017', 'id': 846042936437604353, 'id_str': '846042936437604353', 'full_text': 'Meet Jarvis. The snow pupsets him. Officially ready for summer. 12/10 would perform a chilly boop https://t.co/0hLkztpiOW', 'truncated': False, 'display_text_range': [0, 97], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 846042902916583425, 'id_str': '846042902916583425', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg', 'url': 'https://t.co/0hLkztpiOW', 'display_url': 'pic.twitter.com/0hLkztpiOW', 'expanded_url': 'https://twitter.com/dog_rates/status/846042936437604353/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 2016, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 669, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1181, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 846042902916583425, 'id_str': '846042902916583425', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg', 'url': 'https://t.co/0hLkztpiOW', 'display_url': 'pic.twitter.com/0hLkztpiOW', 'expanded_url': 'https://twitter.com/dog_rates/status/846042936437604353/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 2016, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 669, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1181, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2579, 'favorite_count': 14766, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Mar 26 01:38:00 +0000 2017', 'id': 845812042753855489, 'id_str': '845812042753855489', 'full_text': "We usually don't rate polar bears but this one seems extra good. Majestic as h*ck. 13/10 would hug for a while https://t.co/TLNexlqzXP", 'truncated': False, 'display_text_range': [0, 110], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 845812035082440705, 'id_str': '845812035082440705', 'indices': [111, 134], 'media_url': 'http://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg', 'url': 'https://t.co/TLNexlqzXP', 'display_url': 'pic.twitter.com/TLNexlqzXP', 'expanded_url': 'https://twitter.com/dog_rates/status/845812042753855489/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 845812035082440705, 'id_str': '845812035082440705', 'indices': [111, 134], 'media_url': 'http://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg', 'url': 'https://t.co/TLNexlqzXP', 'display_url': 'pic.twitter.com/TLNexlqzXP', 'expanded_url': 'https://twitter.com/dog_rates/status/845812042753855489/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 845812035065712640, 'id_str': '845812035065712640', 'indices': [111, 134], 'media_url': 'http://pbs.twimg.com/media/C7ztkIjXkAAyOmG.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7ztkIjXkAAyOmG.jpg', 'url': 'https://t.co/TLNexlqzXP', 'display_url': 'pic.twitter.com/TLNexlqzXP', 'expanded_url': 'https://twitter.com/dog_rates/status/845812042753855489/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}, {'id': 845812035174715392, 'id_str': '845812035174715392', 'indices': [111, 134], 'media_url': 'http://pbs.twimg.com/media/C7ztkI9W0AAezkB.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7ztkI9W0AAezkB.jpg', 'url': 'https://t.co/TLNexlqzXP', 'display_url': 'pic.twitter.com/TLNexlqzXP', 'expanded_url': 'https://twitter.com/dog_rates/status/845812042753855489/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 845812037187985408, 'id_str': '845812037187985408', 'indices': [111, 134], 'media_url': 'http://pbs.twimg.com/media/C7ztkQdW4AA_vj8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7ztkQdW4AA_vj8.jpg', 'url': 'https://t.co/TLNexlqzXP', 'display_url': 'pic.twitter.com/TLNexlqzXP', 'expanded_url': 'https://twitter.com/dog_rates/status/845812042753855489/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7841, 'favorite_count': 26940, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Mar 25 16:45:08 +0000 2017', 'id': 845677943972139009, 'id_str': '845677943972139009', 'full_text': "C'mon guys. Please only send in dogs. We only rate dogs, not Exceptional-Tongued Peruvian Floor Bears. Thank you... 12/10 https://t.co/z30iQLiXNo", 'truncated': False, 'display_text_range': [0, 121], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 845677937315713024, 'id_str': '845677937315713024', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg', 'url': 'https://t.co/z30iQLiXNo', 'display_url': 'pic.twitter.com/z30iQLiXNo', 'expanded_url': 'https://twitter.com/dog_rates/status/845677943972139009/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 845677937315713024, 'id_str': '845677937315713024', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg', 'url': 'https://t.co/z30iQLiXNo', 'display_url': 'pic.twitter.com/z30iQLiXNo', 'expanded_url': 'https://twitter.com/dog_rates/status/845677943972139009/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4371, 'favorite_count': 23381, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Mar 24 22:08:59 +0000 2017', 'id': 845397057150107648, 'id_str': '845397057150107648', 'full_text': "Say hello to Mimosa. She's an emotional support doggo who helps her owner with PTSD. 13/10, but she needs your help\n\nhttps://t.co/L6mLzrd7Mx https://t.co/jMutBFdw5o", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/L6mLzrd7Mx', 'expanded_url': 'https://www.gofundme.com/help-save-a-pup', 'display_url': 'gofundme.com/help-save-a-pup', 'indices': [117, 140]}], 'media': [{'id': 845397049587699714, 'id_str': '845397049587699714', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg', 'url': 'https://t.co/jMutBFdw5o', 'display_url': 'pic.twitter.com/jMutBFdw5o', 'expanded_url': 'https://twitter.com/dog_rates/status/845397057150107648/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 845397049587699714, 'id_str': '845397049587699714', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg', 'url': 'https://t.co/jMutBFdw5o', 'display_url': 'pic.twitter.com/jMutBFdw5o', 'expanded_url': 'https://twitter.com/dog_rates/status/845397057150107648/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}, {'id': 845397049591943170, 'id_str': '845397049591943170', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C7t0IzMXUAIYltr.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7t0IzMXUAIYltr.jpg', 'url': 'https://t.co/jMutBFdw5o', 'display_url': 'pic.twitter.com/jMutBFdw5o', 'expanded_url': 'https://twitter.com/dog_rates/status/845397057150107648/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 509, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1024, 'h': 767, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 767, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1616, 'favorite_count': 7069, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Mar 24 16:10:40 +0000 2017', 'id': 845306882940190720, 'id_str': '845306882940190720', 'full_text': "This is Pickles. She's a silly pupper. Thinks she's a dish. 12/10 would dry https://t.co/7mPCF4ZwEk", 'truncated': False, 'display_text_range': [0, 75], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 845306874031476736, 'id_str': '845306874031476736', 'indices': [76, 99], 'media_url': 'http://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg', 'url': 'https://t.co/7mPCF4ZwEk', 'display_url': 'pic.twitter.com/7mPCF4ZwEk', 'expanded_url': 'https://twitter.com/dog_rates/status/845306882940190720/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 845306874031476736, 'id_str': '845306874031476736', 'indices': [76, 99], 'media_url': 'http://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg', 'url': 'https://t.co/7mPCF4ZwEk', 'display_url': 'pic.twitter.com/7mPCF4ZwEk', 'expanded_url': 'https://twitter.com/dog_rates/status/845306882940190720/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4843, 'favorite_count': 21554, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Mar 24 02:22:04 +0000 2017', 'id': 845098359547420673, 'id_str': '845098359547420673', 'full_text': 'RT @dog_rates: This is Bungalo. She uses that face to get what she wants. It works unbelievably well. 12/10 would never say no to https://t…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Tue Sep 06 23:56:05 +0000 2016', 'id': 773308824254029826, 'id_str': '773308824254029826', 'full_text': 'This is Bungalo. She uses that face to get what she wants. It works unbelievably well. 12/10 would never say no to https://t.co/0Fcft7jl4N', 'truncated': False, 'display_text_range': [0, 114], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 773308813344645120, 'id_str': '773308813344645120', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/CrtYRMEWIAAUkCl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CrtYRMEWIAAUkCl.jpg', 'url': 'https://t.co/0Fcft7jl4N', 'display_url': 'pic.twitter.com/0Fcft7jl4N', 'expanded_url': 'https://twitter.com/dog_rates/status/773308824254029826/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 960, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 720, 'h': 960, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 773308813344645120, 'id_str': '773308813344645120', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/CrtYRMEWIAAUkCl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CrtYRMEWIAAUkCl.jpg', 'url': 'https://t.co/0Fcft7jl4N', 'display_url': 'pic.twitter.com/0Fcft7jl4N', 'expanded_url': 'https://twitter.com/dog_rates/status/773308824254029826/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 960, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 720, 'h': 960, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6920, 'favorite_count': 21900, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 6920, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Thu Mar 23 18:29:57 +0000 2017', 'id': 844979544864018432, 'id_str': '844979544864018432', 'full_text': "PUPDATE: I'm proud to announce that Toby is 236 days sober. Pupgraded to a 13/10. We're all very proud of you, Toby https://t.co/a5OaJeRl9B", 'truncated': False, 'display_text_range': [0, 115], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 844979535204429824, 'id_str': '844979535204429824', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/C7n4aQ5VsAAc1LN.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7n4aQ5VsAAc1LN.jpg', 'url': 'https://t.co/a5OaJeRl9B', 'display_url': 'pic.twitter.com/a5OaJeRl9B', 'expanded_url': 'https://twitter.com/dog_rates/status/844979544864018432/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 750, 'h': 449, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 449, 'resize': 'fit'}, 'small': {'w': 680, 'h': 407, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 844979535204429824, 'id_str': '844979535204429824', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/C7n4aQ5VsAAc1LN.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7n4aQ5VsAAc1LN.jpg', 'url': 'https://t.co/a5OaJeRl9B', 'display_url': 'pic.twitter.com/a5OaJeRl9B', 'expanded_url': 'https://twitter.com/dog_rates/status/844979544864018432/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 750, 'h': 449, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 449, 'resize': 'fit'}, 'small': {'w': 680, 'h': 407, 'resize': 'fit'}}}, {'id': 844979535183470592, 'id_str': '844979535183470592', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/C7n4aQ0V4AAQINh.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7n4aQ0V4AAQINh.jpg', 'url': 'https://t.co/a5OaJeRl9B', 'display_url': 'pic.twitter.com/a5OaJeRl9B', 'expanded_url': 'https://twitter.com/dog_rates/status/844979544864018432/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 750, 'h': 710, 'resize': 'fit'}, 'small': {'w': 680, 'h': 644, 'resize': 'fit'}, 'large': {'w': 750, 'h': 710, 'resize': 'fit'}}}, {'id': 844979535183413248, 'id_str': '844979535183413248', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg', 'url': 'https://t.co/a5OaJeRl9B', 'display_url': 'pic.twitter.com/a5OaJeRl9B', 'expanded_url': 'https://twitter.com/dog_rates/status/844979544864018432/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 759099523532779520, 'in_reply_to_status_id_str': '759099523532779520', 'in_reply_to_user_id': 4196983835, 'in_reply_to_user_id_str': '4196983835', 'in_reply_to_screen_name': 'dog_rates', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2306, 'favorite_count': 12644, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Mar 23 18:07:10 +0000 2017', 'id': 844973813909606400, 'id_str': '844973813909606400', 'full_text': "This is Brady. He's a recovering alcoholic. Demonstrating incredible restraint here. 12/10 don't give pup, don't give in, Brady https://t.co/B1iBuSq3hr", 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 844973805558685696, 'id_str': '844973805558685696', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg', 'url': 'https://t.co/B1iBuSq3hr', 'display_url': 'pic.twitter.com/B1iBuSq3hr', 'expanded_url': 'https://twitter.com/dog_rates/status/844973813909606400/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 844973805558685696, 'id_str': '844973805558685696', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg', 'url': 'https://t.co/B1iBuSq3hr', 'display_url': 'pic.twitter.com/B1iBuSq3hr', 'expanded_url': 'https://twitter.com/dog_rates/status/844973813909606400/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2840, 'favorite_count': 13895, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Mar 22 16:04:20 +0000 2017', 'id': 844580511645339650, 'id_str': '844580511645339650', 'full_text': 'This is Charlie. He wants to know if you have a moment to talk about washing machine insurance policies. 11/10 would hear him out https://t.co/gAzPqT7uyk', 'truncated': False, 'display_text_range': [0, 129], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 844580505345511424, 'id_str': '844580505345511424', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg', 'url': 'https://t.co/gAzPqT7uyk', 'display_url': 'pic.twitter.com/gAzPqT7uyk', 'expanded_url': 'https://twitter.com/dog_rates/status/844580511645339650/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 844580505345511424, 'id_str': '844580505345511424', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg', 'url': 'https://t.co/gAzPqT7uyk', 'display_url': 'pic.twitter.com/gAzPqT7uyk', 'expanded_url': 'https://twitter.com/dog_rates/status/844580511645339650/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2805, 'favorite_count': 15250, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Mar 21 16:26:50 +0000 2017', 'id': 844223788422217728, 'id_str': '844223788422217728', 'full_text': "This is Margo. She just dug pup a massive hole. Can't wait for you to see it. H*ckin proud of herself. 12/10 would forgive then pet https://t.co/H38HB6rBTx", 'truncated': False, 'display_text_range': [0, 131], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 844223764510334976, 'id_str': '844223764510334976', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg', 'url': 'https://t.co/H38HB6rBTx', 'display_url': 'pic.twitter.com/H38HB6rBTx', 'expanded_url': 'https://twitter.com/dog_rates/status/844223788422217728/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 844223764510334976, 'id_str': '844223764510334976', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg', 'url': 'https://t.co/H38HB6rBTx', 'display_url': 'pic.twitter.com/H38HB6rBTx', 'expanded_url': 'https://twitter.com/dog_rates/status/844223788422217728/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1984, 'favorite_count': 12662, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Mar 21 00:22:10 +0000 2017', 'id': 843981021012017153, 'id_str': '843981021012017153', 'full_text': 'HE WAS DOING A SNOOZE NO SHAME IN A SNOOZE 13/10 https://t.co/Gu5wHx3CBd', 'truncated': False, 'display_text_range': [0, 48], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/Gu5wHx3CBd', 'expanded_url': 'https://twitter.com/brianstack153/status/796796054100471809', 'display_url': 'twitter.com/brianstack153/…', 'indices': [49, 72]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'retweet_count': 2695, 'favorite_count': 14068, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Mar 20 16:08:44 +0000 2017', 'id': 843856843873095681, 'id_str': '843856843873095681', 'full_text': 'Say hello to Sadie and Daisy. They do all their shopping together. Can never agree on what to get. Like an old married pupple. Both 12/10 https://t.co/f5C5l5wa0e', 'truncated': False, 'display_text_range': [0, 137], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 843856835564240896, 'id_str': '843856835564240896', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg', 'url': 'https://t.co/f5C5l5wa0e', 'display_url': 'pic.twitter.com/f5C5l5wa0e', 'expanded_url': 'https://twitter.com/dog_rates/status/843856843873095681/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 843856835564240896, 'id_str': '843856835564240896', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg', 'url': 'https://t.co/f5C5l5wa0e', 'display_url': 'pic.twitter.com/f5C5l5wa0e', 'expanded_url': 'https://twitter.com/dog_rates/status/843856843873095681/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4159, 'favorite_count': 19893, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Mar 19 23:25:35 +0000 2017', 'id': 843604394117681152, 'id_str': '843604394117681152', 'full_text': "This is Hank. He's been outside for 3 minutes and already made a friend. Way to go Hank. 11/10 for both https://t.co/wHUElL84RC", 'truncated': False, 'display_text_range': [0, 103], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 843604386559348738, 'id_str': '843604386559348738', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg', 'url': 'https://t.co/wHUElL84RC', 'display_url': 'pic.twitter.com/wHUElL84RC', 'expanded_url': 'https://twitter.com/dog_rates/status/843604394117681152/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 717, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1149, 'h': 1923, 'resize': 'fit'}, 'small': {'w': 406, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 843604386559348738, 'id_str': '843604386559348738', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg', 'url': 'https://t.co/wHUElL84RC', 'display_url': 'pic.twitter.com/wHUElL84RC', 'expanded_url': 'https://twitter.com/dog_rates/status/843604394117681152/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 717, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1149, 'h': 1923, 'resize': 'fit'}, 'small': {'w': 406, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2475, 'favorite_count': 15651, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Mar 18 22:59:54 +0000 2017', 'id': 843235543001513987, 'id_str': '843235543001513987', 'full_text': 'This is Tycho. She just had new wheels installed. About to do a zoom. 0-60 in 2.4 seconds. 13/10 inspirational as h*ck https://t.co/DKwp2ByMsL', 'truncated': False, 'display_text_range': [0, 118], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 843235535846031360, 'id_str': '843235535846031360', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg', 'url': 'https://t.co/DKwp2ByMsL', 'display_url': 'pic.twitter.com/DKwp2ByMsL', 'expanded_url': 'https://twitter.com/dog_rates/status/843235543001513987/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1535, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 899, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 843235535846031360, 'id_str': '843235535846031360', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg', 'url': 'https://t.co/DKwp2ByMsL', 'display_url': 'pic.twitter.com/DKwp2ByMsL', 'expanded_url': 'https://twitter.com/dog_rates/status/843235543001513987/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1535, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 899, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 843235535846105088, 'id_str': '843235535846105088', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C7PGQJAX4AArEg7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7PGQJAX4AArEg7.jpg', 'url': 'https://t.co/DKwp2ByMsL', 'display_url': 'pic.twitter.com/DKwp2ByMsL', 'expanded_url': 'https://twitter.com/dog_rates/status/843235543001513987/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 899, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1535, 'h': 2048, 'resize': 'fit'}}}, {'id': 843235535837716480, 'id_str': '843235535837716480', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C7PGQI-X4AAM3nq.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7PGQI-X4AAM3nq.jpg', 'url': 'https://t.co/DKwp2ByMsL', 'display_url': 'pic.twitter.com/DKwp2ByMsL', 'expanded_url': 'https://twitter.com/dog_rates/status/843235543001513987/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 899, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1535, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5380, 'favorite_count': 19910, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Mar 17 21:13:10 +0000 2017', 'id': 842846295480000512, 'id_str': '842846295480000512', 'full_text': "This is Charlie. He's wishing you a very fun and safe St. Pawtrick's Day. 13/10 festive af https://t.co/nFpNgCWWYs", 'truncated': False, 'display_text_range': [0, 90], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 842846286093209601, 'id_str': '842846286093209601', 'indices': [91, 114], 'media_url': 'http://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg', 'url': 'https://t.co/nFpNgCWWYs', 'display_url': 'pic.twitter.com/nFpNgCWWYs', 'expanded_url': 'https://twitter.com/dog_rates/status/842846295480000512/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 568, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1003, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1711, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 842846286093209601, 'id_str': '842846286093209601', 'indices': [91, 114], 'media_url': 'http://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg', 'url': 'https://t.co/nFpNgCWWYs', 'display_url': 'pic.twitter.com/nFpNgCWWYs', 'expanded_url': 'https://twitter.com/dog_rates/status/842846295480000512/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 568, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1003, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1711, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3310, 'favorite_count': 14180, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Mar 17 15:51:22 +0000 2017', 'id': 842765311967449089, 'id_str': '842765311967449089', 'full_text': "Meet Indie. She's not a fan of baths but she's definitely a fan of hide &amp; seek. 12/10 click the link to help Indie\n\nhttps://t.co/fvGkIuAlFK https://t.co/kiCFtmJd7l", 'truncated': False, 'display_text_range': [0, 143], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/fvGkIuAlFK', 'expanded_url': 'https://www.gofundme.com/get-indie-home/', 'display_url': 'gofundme.com/get-indie-home/', 'indices': [120, 143]}], 'media': [{'id': 842765306540052480, 'id_str': '842765306540052480', 'indices': [144, 167], 'media_url': 'http://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg', 'url': 'https://t.co/kiCFtmJd7l', 'display_url': 'pic.twitter.com/kiCFtmJd7l', 'expanded_url': 'https://twitter.com/dog_rates/status/842765311967449089/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 673, 'resize': 'fit'}, 'large': {'w': 750, 'h': 742, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 742, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 842765306540052480, 'id_str': '842765306540052480', 'indices': [144, 167], 'media_url': 'http://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg', 'url': 'https://t.co/kiCFtmJd7l', 'display_url': 'pic.twitter.com/kiCFtmJd7l', 'expanded_url': 'https://twitter.com/dog_rates/status/842765311967449089/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 673, 'resize': 'fit'}, 'large': {'w': 750, 'h': 742, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 742, 'resize': 'fit'}}}, {'id': 842765306548371456, 'id_str': '842765306548371456', 'indices': [144, 167], 'media_url': 'http://pbs.twimg.com/media/C7IalMXWwAAZ2G3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7IalMXWwAAZ2G3.jpg', 'url': 'https://t.co/kiCFtmJd7l', 'display_url': 'pic.twitter.com/kiCFtmJd7l', 'expanded_url': 'https://twitter.com/dog_rates/status/842765311967449089/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 747, 'h': 745, 'resize': 'fit'}, 'large': {'w': 747, 'h': 745, 'resize': 'fit'}, 'small': {'w': 680, 'h': 678, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1175, 'favorite_count': 6277, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Mar 17 00:38:32 +0000 2017', 'id': 842535590457499648, 'id_str': '842535590457499648', 'full_text': "This is Winnie. She lost her body saving a children's hospital from an avalanche. 13/10 what a h*ckin hero https://t.co/Tf0rh9ZgZe", 'truncated': False, 'display_text_range': [0, 106], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 842535582697971714, 'id_str': '842535582697971714', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg', 'url': 'https://t.co/Tf0rh9ZgZe', 'display_url': 'pic.twitter.com/Tf0rh9ZgZe', 'expanded_url': 'https://twitter.com/dog_rates/status/842535590457499648/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 842535582697971714, 'id_str': '842535582697971714', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg', 'url': 'https://t.co/Tf0rh9ZgZe', 'display_url': 'pic.twitter.com/Tf0rh9ZgZe', 'expanded_url': 'https://twitter.com/dog_rates/status/842535590457499648/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3163, 'favorite_count': 16866, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Mar 16 00:00:07 +0000 2017', 'id': 842163532590374912, 'id_str': '842163532590374912', 'full_text': 'Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug with permission https://t.co/o6E0hB3xZl', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 842163518233292801, 'id_str': '842163518233292801', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C6_3QgMWsAENVzr.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6_3QgMWsAENVzr.jpg', 'url': 'https://t.co/o6E0hB3xZl', 'display_url': 'pic.twitter.com/o6E0hB3xZl', 'expanded_url': 'https://twitter.com/dog_rates/status/842163532590374912/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 842163518233292801, 'id_str': '842163518233292801', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C6_3QgMWsAENVzr.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6_3QgMWsAENVzr.jpg', 'url': 'https://t.co/o6E0hB3xZl', 'display_url': 'pic.twitter.com/o6E0hB3xZl', 'expanded_url': 'https://twitter.com/dog_rates/status/842163532590374912/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}}}, {'id': 842163518233292803, 'id_str': '842163518233292803', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg', 'url': 'https://t.co/o6E0hB3xZl', 'display_url': 'pic.twitter.com/o6E0hB3xZl', 'expanded_url': 'https://twitter.com/dog_rates/status/842163532590374912/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5244, 'favorite_count': 22672, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Mar 15 20:48:07 +0000 2017', 'id': 842115215311396866, 'id_str': '842115215311396866', 'full_text': "This is Bentley. It's his first time going to the beach. I think he's a fan. 12/10 would build sand castles with https://t.co/iDK4OyQJoy", 'truncated': False, 'display_text_range': [0, 112], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 842115183262736384, 'id_str': '842115183262736384', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg', 'url': 'https://t.co/iDK4OyQJoy', 'display_url': 'pic.twitter.com/iDK4OyQJoy', 'expanded_url': 'https://twitter.com/dog_rates/status/842115215311396866/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 576, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 576, 'h': 1024, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 842115183262736384, 'id_str': '842115183262736384', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg', 'url': 'https://t.co/iDK4OyQJoy', 'display_url': 'pic.twitter.com/iDK4OyQJoy', 'expanded_url': 'https://twitter.com/dog_rates/status/842115215311396866/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 576, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 576, 'h': 1024, 'resize': 'fit'}}}, {'id': 842115183250137098, 'id_str': '842115183250137098', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C6_LTCWWYAogPJL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6_LTCWWYAogPJL.jpg', 'url': 'https://t.co/iDK4OyQJoy', 'display_url': 'pic.twitter.com/iDK4OyQJoy', 'expanded_url': 'https://twitter.com/dog_rates/status/842115215311396866/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}}, {'id': 842115183329841152, 'id_str': '842115183329841152', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C6_LTCpWkAAiLe1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6_LTCpWkAAiLe1.jpg', 'url': 'https://t.co/iDK4OyQJoy', 'display_url': 'pic.twitter.com/iDK4OyQJoy', 'expanded_url': 'https://twitter.com/dog_rates/status/842115215311396866/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2752, 'favorite_count': 12995, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Mar 15 02:10:39 +0000 2017', 'id': 841833993020538882, 'id_str': '841833993020538882', 'full_text': 'RT @dog_rates: This is Ken. His cheeks are magic. 13/10 (IG: ken_shiba) https://t.co/btzf1zTDeQ', 'truncated': False, 'display_text_range': [0, 95], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 817423809049493505, 'id_str': '817423809049493505', 'indices': [72, 95], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg', 'url': 'https://t.co/btzf1zTDeQ', 'display_url': 'pic.twitter.com/btzf1zTDeQ', 'expanded_url': 'https://twitter.com/dog_rates/status/817423860136083457/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 720, 'resize': 'fit'}, 'large': {'w': 720, 'h': 720, 'resize': 'fit'}}, 'source_status_id': 817423860136083457, 'source_status_id_str': '817423860136083457', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 817423809049493505, 'id_str': '817423809049493505', 'indices': [72, 95], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg', 'url': 'https://t.co/btzf1zTDeQ', 'display_url': 'pic.twitter.com/btzf1zTDeQ', 'expanded_url': 'https://twitter.com/dog_rates/status/817423860136083457/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 720, 'resize': 'fit'}, 'large': {'w': 720, 'h': 720, 'resize': 'fit'}}, 'source_status_id': 817423860136083457, 'source_status_id_str': '817423860136083457', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835', 'video_info': {'aspect_ratio': [1, 1], 'duration_millis': 12079, 'variants': [{'bitrate': 1280000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/817423809049493505/pu/vid/720x720/I9zru8euq3KyMtPW.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/817423809049493505/pu/pl/pjux09oIx4_Pqa3X.m3u8'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/817423809049493505/pu/vid/480x480/dHYYdvXMlZuCCtRJ.mp4'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/817423809049493505/pu/vid/240x240/J33-HErqMVqpUn6L.mp4'}]}, 'additional_media_info': {'monetizable': False, 'source_user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Fri Jan 06 17:33:29 +0000 2017', 'id': 817423860136083457, 'id_str': '817423860136083457', 'full_text': 'This is Ken. His cheeks are magic. 13/10 (IG: ken_shiba) https://t.co/btzf1zTDeQ', 'truncated': False, 'display_text_range': [0, 56], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 817423809049493505, 'id_str': '817423809049493505', 'indices': [57, 80], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg', 'url': 'https://t.co/btzf1zTDeQ', 'display_url': 'pic.twitter.com/btzf1zTDeQ', 'expanded_url': 'https://twitter.com/dog_rates/status/817423860136083457/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 720, 'resize': 'fit'}, 'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 817423809049493505, 'id_str': '817423809049493505', 'indices': [57, 80], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg', 'url': 'https://t.co/btzf1zTDeQ', 'display_url': 'pic.twitter.com/btzf1zTDeQ', 'expanded_url': 'https://twitter.com/dog_rates/status/817423860136083457/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 720, 'resize': 'fit'}, 'large': {'w': 720, 'h': 720, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [1, 1], 'duration_millis': 12079, 'variants': [{'bitrate': 1280000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/817423809049493505/pu/vid/720x720/I9zru8euq3KyMtPW.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/817423809049493505/pu/pl/pjux09oIx4_Pqa3X.m3u8'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/817423809049493505/pu/vid/480x480/dHYYdvXMlZuCCtRJ.mp4'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/817423809049493505/pu/vid/240x240/J33-HErqMVqpUn6L.mp4'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 13519, 'favorite_count': 31711, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 13519, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Mar 14 16:01:03 +0000 2017', 'id': 841680585030541313, 'id_str': '841680585030541313', 'full_text': "This is Penny. She's a dragon slayer. Feared by most, if not all, dragons. Showing off her latest victim here. 12/10 would pet with caution https://t.co/qUOijSlPnj", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 841680565212454913, 'id_str': '841680565212454913', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg', 'url': 'https://t.co/qUOijSlPnj', 'display_url': 'pic.twitter.com/qUOijSlPnj', 'expanded_url': 'https://twitter.com/dog_rates/status/841680585030541313/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 841680565212454913, 'id_str': '841680565212454913', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg', 'url': 'https://t.co/qUOijSlPnj', 'display_url': 'pic.twitter.com/qUOijSlPnj', 'expanded_url': 'https://twitter.com/dog_rates/status/841680585030541313/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7134, 'favorite_count': 23978, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Mar 14 00:04:30 +0000 2017', 'id': 841439858740625411, 'id_str': '841439858740625411', 'full_text': 'Here we have some incredible doggos for #K9VeteransDay. All brave as h*ck. Salute your dog in solidarity. 14/10 for all https://t.co/SVNMdFqKDL', 'truncated': False, 'display_text_range': [0, 119], 'entities': {'hashtags': [{'text': 'K9VeteransDay', 'indices': [40, 54]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 841439843452387328, 'id_str': '841439843452387328', 'indices': [120, 143], 'media_url': 'http://pbs.twimg.com/media/C61lFFjXAAAkIFZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C61lFFjXAAAkIFZ.jpg', 'url': 'https://t.co/SVNMdFqKDL', 'display_url': 'pic.twitter.com/SVNMdFqKDL', 'expanded_url': 'https://twitter.com/dog_rates/status/841439858740625411/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1365, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 841439843452387328, 'id_str': '841439843452387328', 'indices': [120, 143], 'media_url': 'http://pbs.twimg.com/media/C61lFFjXAAAkIFZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C61lFFjXAAAkIFZ.jpg', 'url': 'https://t.co/SVNMdFqKDL', 'display_url': 'pic.twitter.com/SVNMdFqKDL', 'expanded_url': 'https://twitter.com/dog_rates/status/841439858740625411/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1365, 'resize': 'fit'}}}, {'id': 841439843456565248, 'id_str': '841439843456565248', 'indices': [120, 143], 'media_url': 'http://pbs.twimg.com/media/C61lFFkWwAAVkA5.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C61lFFkWwAAVkA5.jpg', 'url': 'https://t.co/SVNMdFqKDL', 'display_url': 'pic.twitter.com/SVNMdFqKDL', 'expanded_url': 'https://twitter.com/dog_rates/status/841439858740625411/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1000, 'h': 667, 'resize': 'fit'}, 'small': {'w': 680, 'h': 454, 'resize': 'fit'}, 'large': {'w': 1000, 'h': 667, 'resize': 'fit'}}}, {'id': 841439843448168448, 'id_str': '841439843448168448', 'indices': [120, 143], 'media_url': 'http://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg', 'url': 'https://t.co/SVNMdFqKDL', 'display_url': 'pic.twitter.com/SVNMdFqKDL', 'expanded_url': 'https://twitter.com/dog_rates/status/841439858740625411/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}, {'id': 841439843448156162, 'id_str': '841439843448156162', 'indices': [120, 143], 'media_url': 'http://pbs.twimg.com/media/C61lFFiWcAIvX-V.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C61lFFiWcAIvX-V.jpg', 'url': 'https://t.co/SVNMdFqKDL', 'display_url': 'pic.twitter.com/SVNMdFqKDL', 'expanded_url': 'https://twitter.com/dog_rates/status/841439858740625411/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 634, 'h': 388, 'resize': 'fit'}, 'small': {'w': 634, 'h': 388, 'resize': 'fit'}, 'medium': {'w': 634, 'h': 388, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3302, 'favorite_count': 11693, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Mar 13 16:08:50 +0000 2017', 'id': 841320156043304961, 'id_str': '841320156043304961', 'full_text': "We don't rate penguins, but if we did, this one would get 12/10 https://t.co/cEORXhwZ5K", 'truncated': False, 'display_text_range': [0, 63], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/cEORXhwZ5K', 'expanded_url': 'https://twitter.com/abc/status/841311395547250688', 'display_url': 'twitter.com/abc/status/841…', 'indices': [64, 87]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'quoted_status_id': 841311395547250688, 'quoted_status_id_str': '841311395547250688', 'quoted_status_permalink': {'url': 'https://t.co/cEORXhwZ5K', 'expanded': 'https://twitter.com/abc/status/841311395547250688', 'display': 'twitter.com/abc/status/841…'}, 'quoted_status': {'created_at': 'Mon Mar 13 15:34:02 +0000 2017', 'id': 841311395547250688, 'id_str': '841311395547250688', 'full_text': 'LOVING LIFE: Watch this 6-year-old avalanche search and rescue dog take a slide down California’s Heavenly Mountain in Lake Tahoe. https://t.co/m4dhaakn7D', 'truncated': False, 'display_text_range': [0, 130], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 841307937456979968, 'id_str': '841307937456979968', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/media/C6ztYBtWgAcrAOZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6ztYBtWgAcrAOZ.jpg', 'url': 'https://t.co/m4dhaakn7D', 'display_url': 'pic.twitter.com/m4dhaakn7D', 'expanded_url': 'https://twitter.com/ABC/status/841311395547250688/video/1', 'type': 'photo', 'sizes': {'small': {'w': 480, 'h': 480, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 480, 'h': 480, 'resize': 'fit'}, 'large': {'w': 480, 'h': 480, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 841307937456979968, 'id_str': '841307937456979968', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/media/C6ztYBtWgAcrAOZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6ztYBtWgAcrAOZ.jpg', 'url': 'https://t.co/m4dhaakn7D', 'display_url': 'pic.twitter.com/m4dhaakn7D', 'expanded_url': 'https://twitter.com/ABC/status/841311395547250688/video/1', 'type': 'video', 'sizes': {'small': {'w': 480, 'h': 480, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 480, 'h': 480, 'resize': 'fit'}, 'large': {'w': 480, 'h': 480, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [1, 1], 'duration_millis': 37371, 'variants': [{'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/amplify_video/841307937456979968/vid/480x480/iIQxVCQsI7drVESH.mp4'}, {'bitrate': 320000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/amplify_video/841307937456979968/vid/240x240/C_6Pl2hiUugEhiyF.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/amplify_video/841307937456979968/pl/_EuBq0pszk_aBaLW.m3u8'}]}, 'additional_media_info': {'title': '6-year-old avalanche search and rescue dog slides down snow', 'description': '', 'call_to_actions': {'visit_site': {'url': 'https://abcnews.com/weather'}}, 'embeddable': True, 'monetizable': False}}]}, 'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 28785486, 'id_str': '28785486', 'name': 'ABC News', 'screen_name': 'ABC', 'location': 'New York City / Worldwide', 'description': 'All the news and information you need to see, curated by the @ABC News team. Watch full ABC News broadcasts on @Hulu: https://t.co/w3wQ1O1Szs', 'url': 'https://t.co/26XEt8onYo', 'entities': {'url': {'urls': [{'url': 'https://t.co/26XEt8onYo', 'expanded_url': 'https://abcnews.go.com/', 'display_url': 'abcnews.go.com', 'indices': [0, 23]}]}, 'description': {'urls': [{'url': 'https://t.co/w3wQ1O1Szs', 'expanded_url': 'http://abcn.ws/3bJ62RK', 'display_url': 'abcn.ws/3bJ62RK', 'indices': [118, 141]}]}}, 'protected': False, 'followers_count': 17688952, 'friends_count': 486, 'listed_count': 66380, 'created_at': 'Sat Apr 04 12:40:32 +0000 2009', 'favourites_count': 48, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 395960, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': True, 'profile_background_color': '6E8EB5', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1453073578790948873/4bg2Xr0L_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1453073578790948873/4bg2Xr0L_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/28785486/1505493568', 'profile_link_color': '336699', 'profile_sidebar_border_color': 'FFFFFF', 'profile_sidebar_fill_color': 'DDEEF6', 'profile_text_color': '333333', 'profile_use_background_image': True, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'regular', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 10430, 'favorite_count': 21211, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'retweet_count': 5007, 'favorite_count': 18365, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Mar 13 15:47:01 +0000 2017', 'id': 841314665196081154, 'id_str': '841314665196081154', 'full_text': "This is Max. There's no way in h*ck you're taking his pacifier. Binky promises it's not happening. 13/10 very good stubborn boy https://t.co/9lVAqDEvZ5", 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 841311812641533952, 'id_str': '841311812641533952', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/841311812641533952/pu/img/sBUGt8u76n9azPWI.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/841311812641533952/pu/img/sBUGt8u76n9azPWI.jpg', 'url': 'https://t.co/9lVAqDEvZ5', 'display_url': 'pic.twitter.com/9lVAqDEvZ5', 'expanded_url': 'https://twitter.com/dog_rates/status/841314665196081154/video/1', 'type': 'photo', 'sizes': {'medium': {'w': 718, 'h': 404, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 718, 'h': 404, 'resize': 'fit'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 841311812641533952, 'id_str': '841311812641533952', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/841311812641533952/pu/img/sBUGt8u76n9azPWI.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/841311812641533952/pu/img/sBUGt8u76n9azPWI.jpg', 'url': 'https://t.co/9lVAqDEvZ5', 'display_url': 'pic.twitter.com/9lVAqDEvZ5', 'expanded_url': 'https://twitter.com/dog_rates/status/841314665196081154/video/1', 'type': 'video', 'sizes': {'medium': {'w': 718, 'h': 404, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 718, 'h': 404, 'resize': 'fit'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [359, 202], 'duration_millis': 15015, 'variants': [{'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/841311812641533952/pu/vid/318x180/umPCPClfDjQeUSqg.mp4'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/841311812641533952/pu/vid/638x360/7vqIA-_UfM3dJ7XV.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/841311812641533952/pu/pl/qpjZhO6Y6T5s48Yq.m3u8'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4220, 'favorite_count': 14703, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Mar 13 00:02:39 +0000 2017', 'id': 841077006473256960, 'id_str': '841077006473256960', 'full_text': "This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/XKJrmO4fAQ", 'truncated': False, 'display_text_range': [0, 109], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 841077001360461824, 'id_str': '841077001360461824', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg', 'url': 'https://t.co/XKJrmO4fAQ', 'display_url': 'pic.twitter.com/XKJrmO4fAQ', 'expanded_url': 'https://twitter.com/dog_rates/status/841077006473256960/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 841077001360461824, 'id_str': '841077001360461824', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg', 'url': 'https://t.co/XKJrmO4fAQ', 'display_url': 'pic.twitter.com/XKJrmO4fAQ', 'expanded_url': 'https://twitter.com/dog_rates/status/841077006473256960/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4876, 'favorite_count': 21285, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Mar 12 03:07:56 +0000 2017', 'id': 840761248237133825, 'id_str': '840761248237133825', 'full_text': 'RT @dog_rates: Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps:/…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sat Mar 11 18:35:42 +0000 2017', 'id': 840632337062862849, 'id_str': '840632337062862849', 'full_text': 'Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps://t.co/JesYTzb1Jo https://t.co/5cncH08G1o', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/JesYTzb1Jo', 'expanded_url': 'https://www.gofundme.com/3hgsuu0', 'display_url': 'gofundme.com/3hgsuu0', 'indices': [117, 140]}], 'media': [{'id': 840632328313495553, 'id_str': '840632328313495553', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg', 'url': 'https://t.co/5cncH08G1o', 'display_url': 'pic.twitter.com/5cncH08G1o', 'expanded_url': 'https://twitter.com/dog_rates/status/840632337062862849/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 840632328313495553, 'id_str': '840632328313495553', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg', 'url': 'https://t.co/5cncH08G1o', 'display_url': 'pic.twitter.com/5cncH08G1o', 'expanded_url': 'https://twitter.com/dog_rates/status/840632337062862849/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1617, 'favorite_count': 8401, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 1617, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sun Mar 12 00:59:17 +0000 2017', 'id': 840728873075638272, 'id_str': '840728873075638272', 'full_text': 'RT @dog_rates: This is Pipsy. He is a fluffball. Enjoys traveling the sea &amp; getting tangled in leash. 12/10 I would kill for Pipsy https://…', 'truncated': False, 'display_text_range': [0, 144], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Thu Nov 19 01:27:25 +0000 2015', 'id': 667152164079423490, 'id_str': '667152164079423490', 'full_text': 'This is Pipsy. He is a fluffball. Enjoys traveling the sea &amp; getting tangled in leash. 12/10 I would kill for Pipsy https://t.co/h9R0EwKd9X', 'truncated': False, 'display_text_range': [0, 143], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 667152157783670784, 'id_str': '667152157783670784', 'indices': [120, 143], 'media_url': 'http://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg', 'url': 'https://t.co/h9R0EwKd9X', 'display_url': 'pic.twitter.com/h9R0EwKd9X', 'expanded_url': 'https://twitter.com/dog_rates/status/667152164079423490/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 492, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 741, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 741, 'h': 1024, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 667152157783670784, 'id_str': '667152157783670784', 'indices': [120, 143], 'media_url': 'http://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg', 'url': 'https://t.co/h9R0EwKd9X', 'display_url': 'pic.twitter.com/h9R0EwKd9X', 'expanded_url': 'https://twitter.com/dog_rates/status/667152164079423490/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 492, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 741, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 741, 'h': 1024, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 14561, 'favorite_count': 42118, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 14561, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sat Mar 11 22:59:09 +0000 2017', 'id': 840698636975636481, 'id_str': '840698636975636481', 'full_text': '@0_kelvin_0 &gt;10/10 is reserved for puppos sorry Kevin', 'truncated': False, 'display_text_range': [12, 56], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': '0_kelvin_0', 'name': 'Azer0', 'id': 840547864354918400, 'id_str': '840547864354918400', 'indices': [0, 11]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 840698300298862592, 'in_reply_to_status_id_str': '840698300298862592', 'in_reply_to_user_id': 840547864354918400, 'in_reply_to_user_id_str': '840547864354918400', 'in_reply_to_screen_name': '0_kelvin_0', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2, 'favorite_count': 163, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sat Mar 11 22:51:24 +0000 2017', 'id': 840696689258311684, 'id_str': '840696689258311684', 'full_text': "I didn't even have to intervene. Took him 4 minutes to realize his error. 10/10 for Kevin https://t.co/2gclc1MNr7", 'truncated': False, 'display_text_range': [0, 89], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 840696683398746112, 'id_str': '840696683398746112', 'indices': [90, 113], 'media_url': 'http://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg', 'url': 'https://t.co/2gclc1MNr7', 'display_url': 'pic.twitter.com/2gclc1MNr7', 'expanded_url': 'https://twitter.com/dog_rates/status/840696689258311684/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 614, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 749, 'h': 829, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 749, 'h': 829, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 840696683398746112, 'id_str': '840696683398746112', 'indices': [90, 113], 'media_url': 'http://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg', 'url': 'https://t.co/2gclc1MNr7', 'display_url': 'pic.twitter.com/2gclc1MNr7', 'expanded_url': 'https://twitter.com/dog_rates/status/840696689258311684/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 614, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 749, 'h': 829, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 749, 'h': 829, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 889, 'favorite_count': 11446, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Mar 11 18:35:42 +0000 2017', 'id': 840632337062862849, 'id_str': '840632337062862849', 'full_text': 'Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps://t.co/JesYTzb1Jo https://t.co/5cncH08G1o', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/JesYTzb1Jo', 'expanded_url': 'https://www.gofundme.com/3hgsuu0', 'display_url': 'gofundme.com/3hgsuu0', 'indices': [117, 140]}], 'media': [{'id': 840632328313495553, 'id_str': '840632328313495553', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg', 'url': 'https://t.co/5cncH08G1o', 'display_url': 'pic.twitter.com/5cncH08G1o', 'expanded_url': 'https://twitter.com/dog_rates/status/840632337062862849/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 840632328313495553, 'id_str': '840632328313495553', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg', 'url': 'https://t.co/5cncH08G1o', 'display_url': 'pic.twitter.com/5cncH08G1o', 'expanded_url': 'https://twitter.com/dog_rates/status/840632337062862849/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1617, 'favorite_count': 8401, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Mar 11 01:15:58 +0000 2017', 'id': 840370681858686976, 'id_str': '840370681858686976', 'full_text': 'You have been visited by the magical sugar jar puggo. He has granted you three boops. 13/10 would use immediately https://t.co/76iL7JUQdG', 'truncated': False, 'display_text_range': [0, 113], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 840370672886923264, 'id_str': '840370672886923264', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg', 'url': 'https://t.co/76iL7JUQdG', 'display_url': 'pic.twitter.com/76iL7JUQdG', 'expanded_url': 'https://twitter.com/dog_rates/status/840370681858686976/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1150, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 674, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 840370672886923264, 'id_str': '840370672886923264', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg', 'url': 'https://t.co/76iL7JUQdG', 'display_url': 'pic.twitter.com/76iL7JUQdG', 'expanded_url': 'https://twitter.com/dog_rates/status/840370681858686976/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1150, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 674, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4169, 'favorite_count': 15302, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Mar 10 18:27:58 +0000 2017', 'id': 840268004936019968, 'id_str': '840268004936019968', 'full_text': "This is Monty. He makes instantly regrettable decisions. Couldn't help himself. It looked like a ghost lollipop. 12/10 mistake happen https://t.co/8Wsr6b4RjE", 'truncated': False, 'display_text_range': [0, 133], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 840267990708961280, 'id_str': '840267990708961280', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C6k7SR5WwAABtb9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6k7SR5WwAABtb9.jpg', 'url': 'https://t.co/8Wsr6b4RjE', 'display_url': 'pic.twitter.com/8Wsr6b4RjE', 'expanded_url': 'https://twitter.com/dog_rates/status/840268004936019968/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 840267990708961280, 'id_str': '840267990708961280', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C6k7SR5WwAABtb9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6k7SR5WwAABtb9.jpg', 'url': 'https://t.co/8Wsr6b4RjE', 'display_url': 'pic.twitter.com/8Wsr6b4RjE', 'expanded_url': 'https://twitter.com/dog_rates/status/840268004936019968/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 840267990729924609, 'id_str': '840267990729924609', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C6k7SR-WoAEEieV.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6k7SR-WoAEEieV.jpg', 'url': 'https://t.co/8Wsr6b4RjE', 'display_url': 'pic.twitter.com/8Wsr6b4RjE', 'expanded_url': 'https://twitter.com/dog_rates/status/840268004936019968/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 840267992902619144, 'id_str': '840267992902619144', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg', 'url': 'https://t.co/8Wsr6b4RjE', 'display_url': 'pic.twitter.com/8Wsr6b4RjE', 'expanded_url': 'https://twitter.com/dog_rates/status/840268004936019968/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 840267995503042565, 'id_str': '840267995503042565', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C6k7SjwWoAUfheC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6k7SjwWoAUfheC.jpg', 'url': 'https://t.co/8Wsr6b4RjE', 'display_url': 'pic.twitter.com/8Wsr6b4RjE', 'expanded_url': 'https://twitter.com/dog_rates/status/840268004936019968/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5202, 'favorite_count': 17831, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Mar 10 00:04:21 +0000 2017', 'id': 839990271299457024, 'id_str': '839990271299457024', 'full_text': 'Meet Sojourner. His nose is a Fibonacci Spiral. Legendary af. 13/10 we must protect him at all costs https://t.co/r7W1NbkOtr', 'truncated': False, 'display_text_range': [0, 100], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 839990262579396609, 'id_str': '839990262579396609', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/C6g-sX_VAAEOlfG.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6g-sX_VAAEOlfG.jpg', 'url': 'https://t.co/r7W1NbkOtr', 'display_url': 'pic.twitter.com/r7W1NbkOtr', 'expanded_url': 'https://twitter.com/dog_rates/status/839990271299457024/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 957, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1634, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 543, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 839990262579396609, 'id_str': '839990262579396609', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/C6g-sX_VAAEOlfG.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6g-sX_VAAEOlfG.jpg', 'url': 'https://t.co/r7W1NbkOtr', 'display_url': 'pic.twitter.com/r7W1NbkOtr', 'expanded_url': 'https://twitter.com/dog_rates/status/839990271299457024/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 957, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1634, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 543, 'h': 680, 'resize': 'fit'}}}, {'id': 839990262575247360, 'id_str': '839990262575247360', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg', 'url': 'https://t.co/r7W1NbkOtr', 'display_url': 'pic.twitter.com/r7W1NbkOtr', 'expanded_url': 'https://twitter.com/dog_rates/status/839990271299457024/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2063, 'favorite_count': 12501, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Mar 08 18:52:12 +0000 2017', 'id': 839549326359670784, 'id_str': '839549326359670784', 'full_text': "Meet Winston. He knows he's a little too big for the swing, but he doesn't care. Kindly requests a push. 12/10 would happily oblige https://t.co/GuxEXTdnMu", 'truncated': False, 'display_text_range': [0, 131], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 839549305585295362, 'id_str': '839549305585295362', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg', 'url': 'https://t.co/GuxEXTdnMu', 'display_url': 'pic.twitter.com/GuxEXTdnMu', 'expanded_url': 'https://twitter.com/dog_rates/status/839549326359670784/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1153, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 839549305585295362, 'id_str': '839549305585295362', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg', 'url': 'https://t.co/GuxEXTdnMu', 'display_url': 'pic.twitter.com/GuxEXTdnMu', 'expanded_url': 'https://twitter.com/dog_rates/status/839549326359670784/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1153, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7043, 'favorite_count': 25511, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Mar 08 01:44:07 +0000 2017', 'id': 839290600511926273, 'id_str': '839290600511926273', 'full_text': 'RT @alexmartindawg: THE DRINK IS DR. PUPPER 10/10 good pun @matt___nelson @GoodDogsGame https://t.co/act3duiqbL', 'truncated': False, 'display_text_range': [0, 111], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'alexmartindawg', 'name': 'alexmartindawg', 'id': 41198418, 'id_str': '41198418', 'indices': [3, 18]}, {'screen_name': 'matt___nelson', 'name': 'Anthony Hecker', 'id': 1115596989184401408, 'id_str': '1115596989184401408', 'indices': [59, 73]}, {'screen_name': 'GoodDogsGame', 'name': 'Good Dogs', 'id': 827593379009675264, 'id_str': '827593379009675264', 'indices': [74, 87]}], 'urls': [], 'media': [{'id': 839289900885282817, 'id_str': '839289900885282817', 'indices': [88, 111], 'media_url': 'http://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg', 'url': 'https://t.co/act3duiqbL', 'display_url': 'pic.twitter.com/act3duiqbL', 'expanded_url': 'https://twitter.com/alexmartindawg/status/839289919298224128/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 839289919298224128, 'source_status_id_str': '839289919298224128', 'source_user_id': 41198418, 'source_user_id_str': '41198418'}]}, 'extended_entities': {'media': [{'id': 839289900885282817, 'id_str': '839289900885282817', 'indices': [88, 111], 'media_url': 'http://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg', 'url': 'https://t.co/act3duiqbL', 'display_url': 'pic.twitter.com/act3duiqbL', 'expanded_url': 'https://twitter.com/alexmartindawg/status/839289919298224128/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 839289919298224128, 'source_status_id_str': '839289919298224128', 'source_user_id': 41198418, 'source_user_id_str': '41198418'}, {'id': 839289909034762240, 'id_str': '839289909034762240', 'indices': [88, 111], 'media_url': 'http://pbs.twimg.com/media/C6XBubuWQAARzcp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6XBubuWQAARzcp.jpg', 'url': 'https://t.co/act3duiqbL', 'display_url': 'pic.twitter.com/act3duiqbL', 'expanded_url': 'https://twitter.com/alexmartindawg/status/839289919298224128/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 839289919298224128, 'source_status_id_str': '839289919298224128', 'source_user_id': 41198418, 'source_user_id_str': '41198418'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Wed Mar 08 01:41:24 +0000 2017', 'id': 839289919298224128, 'id_str': '839289919298224128', 'full_text': 'THE DRINK IS DR. PUPPER 10/10 good pun @matt___nelson @GoodDogsGame https://t.co/act3duiqbL', 'truncated': False, 'display_text_range': [0, 67], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'matt___nelson', 'name': 'Anthony Hecker', 'id': 1115596989184401408, 'id_str': '1115596989184401408', 'indices': [39, 53]}, {'screen_name': 'GoodDogsGame', 'name': 'Good Dogs', 'id': 827593379009675264, 'id_str': '827593379009675264', 'indices': [54, 67]}], 'urls': [], 'media': [{'id': 839289900885282817, 'id_str': '839289900885282817', 'indices': [68, 91], 'media_url': 'http://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg', 'url': 'https://t.co/act3duiqbL', 'display_url': 'pic.twitter.com/act3duiqbL', 'expanded_url': 'https://twitter.com/alexmartindawg/status/839289919298224128/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 839289900885282817, 'id_str': '839289900885282817', 'indices': [68, 91], 'media_url': 'http://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg', 'url': 'https://t.co/act3duiqbL', 'display_url': 'pic.twitter.com/act3duiqbL', 'expanded_url': 'https://twitter.com/alexmartindawg/status/839289919298224128/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}, {'id': 839289909034762240, 'id_str': '839289909034762240', 'indices': [68, 91], 'media_url': 'http://pbs.twimg.com/media/C6XBubuWQAARzcp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6XBubuWQAARzcp.jpg', 'url': 'https://t.co/act3duiqbL', 'display_url': 'pic.twitter.com/act3duiqbL', 'expanded_url': 'https://twitter.com/alexmartindawg/status/839289919298224128/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 41198418, 'id_str': '41198418', 'name': 'alexmartindawg', 'screen_name': 'alexmartindawg', 'location': 'in the middle of 0 and 1', 'description': "Someone convince me I'm okay", 'url': None, 'entities': {'description': {'urls': []}}, 'protected': False, 'followers_count': 406, 'friends_count': 680, 'listed_count': 3, 'created_at': 'Tue May 19 20:11:50 +0000 2009', 'favourites_count': 6735, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': False, 'statuses_count': 14310, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '131516', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme18/bg.gif', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme18/bg.gif', 'profile_background_tile': True, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1377836041042853889/H0PrvH4Z_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1377836041042853889/H0PrvH4Z_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/41198418/1525970846', 'profile_link_color': '009999', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': 'F6F6F6', 'profile_text_color': '333333', 'profile_use_background_image': True, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 132, 'favorite_count': 1700, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 132, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Mar 07 22:22:32 +0000 2017', 'id': 839239871831150596, 'id_str': '839239871831150596', 'full_text': "This is Odie. He's big. 13/10 would attempt to ride https://t.co/JEXB9RwBmm", 'truncated': False, 'display_text_range': [0, 51], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 839239862192648194, 'id_str': '839239862192648194', 'indices': [52, 75], 'media_url': 'http://pbs.twimg.com/media/C6WUNUtXMAIIk1y.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6WUNUtXMAIIk1y.jpg', 'url': 'https://t.co/JEXB9RwBmm', 'display_url': 'pic.twitter.com/JEXB9RwBmm', 'expanded_url': 'https://twitter.com/dog_rates/status/839239871831150596/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 839239862192648194, 'id_str': '839239862192648194', 'indices': [52, 75], 'media_url': 'http://pbs.twimg.com/media/C6WUNUtXMAIIk1y.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6WUNUtXMAIIk1y.jpg', 'url': 'https://t.co/JEXB9RwBmm', 'display_url': 'pic.twitter.com/JEXB9RwBmm', 'expanded_url': 'https://twitter.com/dog_rates/status/839239871831150596/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}}}, {'id': 839239862200983554, 'id_str': '839239862200983554', 'indices': [52, 75], 'media_url': 'http://pbs.twimg.com/media/C6WUNUvWYAIofQf.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6WUNUvWYAIofQf.jpg', 'url': 'https://t.co/JEXB9RwBmm', 'display_url': 'pic.twitter.com/JEXB9RwBmm', 'expanded_url': 'https://twitter.com/dog_rates/status/839239871831150596/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 839239863736098816, 'id_str': '839239863736098816', 'indices': [52, 75], 'media_url': 'http://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg', 'url': 'https://t.co/JEXB9RwBmm', 'display_url': 'pic.twitter.com/JEXB9RwBmm', 'expanded_url': 'https://twitter.com/dog_rates/status/839239871831150596/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 672, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1186, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 2024, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5912, 'favorite_count': 25173, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Mar 07 03:22:35 +0000 2017', 'id': 838952994649550848, 'id_str': '838952994649550848', 'full_text': 'SHE MISPLACED HER HOOMAN 13/10 MISTAKES HAPPEN https://t.co/ngAxYLVYHP', 'truncated': False, 'display_text_range': [0, 46], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/ngAxYLVYHP', 'expanded_url': 'https://twitter.com/ktla/status/838948714227998720', 'display_url': 'twitter.com/ktla/status/83…', 'indices': [47, 70]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'quoted_status_id': 838948714227998720, 'quoted_status_id_str': '838948714227998720', 'quoted_status_permalink': {'url': 'https://t.co/ngAxYLVYHP', 'expanded': 'https://twitter.com/ktla/status/838948714227998720', 'display': 'twitter.com/ktla/status/83…'}, 'quoted_status': {'created_at': 'Tue Mar 07 03:05:35 +0000 2017', 'id': 838948714227998720, 'id_str': '838948714227998720', 'full_text': 'Blind family dog missing for a week found alive in Santa Cruz mountains https://t.co/5kZC9NATNJ https://t.co/9qfAMy32pQ', 'truncated': False, 'display_text_range': [0, 95], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/5kZC9NATNJ', 'expanded_url': 'http://on.ktla.com/NuJDc', 'display_url': 'on.ktla.com/NuJDc', 'indices': [72, 95]}], 'media': [{'id': 838948685203460098, 'id_str': '838948685203460098', 'indices': [96, 119], 'media_url': 'http://pbs.twimg.com/media/C6SLYl5VUAIm1lT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6SLYl5VUAIm1lT.jpg', 'url': 'https://t.co/9qfAMy32pQ', 'display_url': 'pic.twitter.com/9qfAMy32pQ', 'expanded_url': 'https://twitter.com/KTLA/status/838948714227998720/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 692, 'h': 384, 'resize': 'fit'}, 'medium': {'w': 692, 'h': 384, 'resize': 'fit'}, 'small': {'w': 680, 'h': 377, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 838948685203460098, 'id_str': '838948685203460098', 'indices': [96, 119], 'media_url': 'http://pbs.twimg.com/media/C6SLYl5VUAIm1lT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6SLYl5VUAIm1lT.jpg', 'url': 'https://t.co/9qfAMy32pQ', 'display_url': 'pic.twitter.com/9qfAMy32pQ', 'expanded_url': 'https://twitter.com/KTLA/status/838948714227998720/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 692, 'h': 384, 'resize': 'fit'}, 'medium': {'w': 692, 'h': 384, 'resize': 'fit'}, 'small': {'w': 680, 'h': 377, 'resize': 'fit'}}}]}, 'source': '<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 10252962, 'id_str': '10252962', 'name': 'KTLA', 'screen_name': 'KTLA', 'location': 'Los Angeles, CA', 'description': 'KTLA has been keeping Southern California informed since 1947. \n\nHave great video, photos or story tips? Share with us using #ktla.', 'url': 'http://t.co/ZgOP41jU0Y', 'entities': {'url': {'urls': [{'url': 'http://t.co/ZgOP41jU0Y', 'expanded_url': 'http://ktla.com', 'display_url': 'ktla.com', 'indices': [0, 22]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 942607, 'friends_count': 832, 'listed_count': 4417, 'created_at': 'Wed Nov 14 17:43:42 +0000 2007', 'favourites_count': 1817, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 256306, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '040718', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme4/bg.gif', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme4/bg.gif', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/809849913240481792/YQ0aT9hv_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/809849913240481792/YQ0aT9hv_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/10252962/1369959990', 'profile_link_color': '24009C', 'profile_sidebar_border_color': 'FFFFFF', 'profile_sidebar_fill_color': '95E8EC', 'profile_text_color': '3C3940', 'profile_use_background_image': True, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3657, 'favorite_count': 10529, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'retweet_count': 3654, 'favorite_count': 18324, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Mar 07 01:17:48 +0000 2017', 'id': 838921590096166913, 'id_str': '838921590096166913', 'full_text': "This is Arlo. He's officially the king of snowy tongue slips. 13/10 would comfort during inevitable brain freeze https://t.co/oXVu9pNZZv", 'truncated': False, 'display_text_range': [0, 112], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 838921573767618560, 'id_str': '838921573767618560', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg', 'url': 'https://t.co/oXVu9pNZZv', 'display_url': 'pic.twitter.com/oXVu9pNZZv', 'expanded_url': 'https://twitter.com/dog_rates/status/838921590096166913/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1301, 'h': 1914, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 816, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 462, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 838921573767618560, 'id_str': '838921573767618560', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg', 'url': 'https://t.co/oXVu9pNZZv', 'display_url': 'pic.twitter.com/oXVu9pNZZv', 'expanded_url': 'https://twitter.com/dog_rates/status/838921590096166913/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1301, 'h': 1914, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 816, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 462, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1852, 'favorite_count': 10392, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Mar 07 00:57:32 +0000 2017', 'id': 838916489579200512, 'id_str': '838916489579200512', 'full_text': 'RT @KibaDva: I collected all the good dogs!! 15/10 @dog_rates #GoodDogs https://t.co/6UCGFczlOI', 'truncated': False, 'display_text_range': [0, 95], 'entities': {'hashtags': [{'text': 'GoodDogs', 'indices': [62, 71]}], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [51, 61]}], 'urls': [], 'media': [{'id': 838905954309529600, 'id_str': '838905954309529600', 'indices': [72, 95], 'media_url': 'http://pbs.twimg.com/media/C6RkhU6UYAAMDpb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6RkhU6UYAAMDpb.jpg', 'url': 'https://t.co/6UCGFczlOI', 'display_url': 'pic.twitter.com/6UCGFczlOI', 'expanded_url': 'https://twitter.com/KibaDva/status/838905980628819968/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1638, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}}, 'source_status_id': 838905980628819968, 'source_status_id_str': '838905980628819968', 'source_user_id': 811740824, 'source_user_id_str': '811740824'}]}, 'extended_entities': {'media': [{'id': 838905954309529600, 'id_str': '838905954309529600', 'indices': [72, 95], 'media_url': 'http://pbs.twimg.com/media/C6RkhU6UYAAMDpb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6RkhU6UYAAMDpb.jpg', 'url': 'https://t.co/6UCGFczlOI', 'display_url': 'pic.twitter.com/6UCGFczlOI', 'expanded_url': 'https://twitter.com/KibaDva/status/838905980628819968/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1638, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}}, 'source_status_id': 838905980628819968, 'source_status_id_str': '838905980628819968', 'source_user_id': 811740824, 'source_user_id_str': '811740824'}, {'id': 838905970277265408, 'id_str': '838905970277265408', 'indices': [72, 95], 'media_url': 'http://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg', 'url': 'https://t.co/6UCGFczlOI', 'display_url': 'pic.twitter.com/6UCGFczlOI', 'expanded_url': 'https://twitter.com/KibaDva/status/838905980628819968/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1638, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}}, 'source_status_id': 838905980628819968, 'source_status_id_str': '838905980628819968', 'source_user_id': 811740824, 'source_user_id_str': '811740824'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Tue Mar 07 00:15:46 +0000 2017', 'id': 838905980628819968, 'id_str': '838905980628819968', 'full_text': 'I collected all the good dogs!! 15/10 @dog_rates #GoodDogs https://t.co/6UCGFczlOI', 'truncated': False, 'display_text_range': [0, 58], 'entities': {'hashtags': [{'text': 'GoodDogs', 'indices': [49, 58]}], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [38, 48]}], 'urls': [], 'media': [{'id': 838905954309529600, 'id_str': '838905954309529600', 'indices': [59, 82], 'media_url': 'http://pbs.twimg.com/media/C6RkhU6UYAAMDpb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6RkhU6UYAAMDpb.jpg', 'url': 'https://t.co/6UCGFczlOI', 'display_url': 'pic.twitter.com/6UCGFczlOI', 'expanded_url': 'https://twitter.com/KibaDva/status/838905980628819968/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1638, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 838905954309529600, 'id_str': '838905954309529600', 'indices': [59, 82], 'media_url': 'http://pbs.twimg.com/media/C6RkhU6UYAAMDpb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6RkhU6UYAAMDpb.jpg', 'url': 'https://t.co/6UCGFczlOI', 'display_url': 'pic.twitter.com/6UCGFczlOI', 'expanded_url': 'https://twitter.com/KibaDva/status/838905980628819968/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1638, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}}}, {'id': 838905970277265408, 'id_str': '838905970277265408', 'indices': [59, 82], 'media_url': 'http://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg', 'url': 'https://t.co/6UCGFczlOI', 'display_url': 'pic.twitter.com/6UCGFczlOI', 'expanded_url': 'https://twitter.com/KibaDva/status/838905980628819968/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1638, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 811740824, 'id_str': '811740824', 'name': '✌🏼🐺🏴\u200d☠️', 'screen_name': 'KibaWolffe', 'location': 'West City', 'description': 'My dogs are my best friends 🐕', 'url': None, 'entities': {'description': {'urls': []}}, 'protected': False, 'followers_count': 273, 'friends_count': 413, 'listed_count': 8, 'created_at': 'Sat Sep 08 21:34:15 +0000 2012', 'favourites_count': 5251, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': False, 'statuses_count': 33818, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '022330', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme15/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme15/bg.png', 'profile_background_tile': True, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1506865738102968320/_TASoWKv_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1506865738102968320/_TASoWKv_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/811740824/1634124759', 'profile_link_color': '94D487', 'profile_sidebar_border_color': 'FFFFFF', 'profile_sidebar_fill_color': 'C0DFEC', 'profile_text_color': '333333', 'profile_use_background_image': True, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 31, 'favorite_count': 667, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 31, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Mar 06 19:21:35 +0000 2017', 'id': 838831947270979586, 'id_str': '838831947270979586', 'full_text': "RT @dog_rates: This is Riley. His owner put a donut pillow around him and he loves it so much he won't let anyone take it off. 13/10 https:…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Thu Oct 06 01:23:05 +0000 2016', 'id': 783839966405230592, 'id_str': '783839966405230592', 'full_text': "This is Riley. His owner put a donut pillow around him and he loves it so much he won't let anyone take it off. 13/10 https://t.co/8TCQcsZCZ8", 'truncated': False, 'display_text_range': [0, 117], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 783839953138683904, 'id_str': '783839953138683904', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/CuDCSM-XEAAJw1W.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CuDCSM-XEAAJw1W.jpg', 'url': 'https://t.co/8TCQcsZCZ8', 'display_url': 'pic.twitter.com/8TCQcsZCZ8', 'expanded_url': 'https://twitter.com/dog_rates/status/783839966405230592/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 783839953138683904, 'id_str': '783839953138683904', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/CuDCSM-XEAAJw1W.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CuDCSM-XEAAJw1W.jpg', 'url': 'https://t.co/8TCQcsZCZ8', 'display_url': 'pic.twitter.com/8TCQcsZCZ8', 'expanded_url': 'https://twitter.com/dog_rates/status/783839966405230592/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 783839953142878208, 'id_str': '783839953142878208', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/CuDCSM_XEAARltP.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CuDCSM_XEAARltP.jpg', 'url': 'https://t.co/8TCQcsZCZ8', 'display_url': 'pic.twitter.com/8TCQcsZCZ8', 'expanded_url': 'https://twitter.com/dog_rates/status/783839966405230592/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}, {'id': 783839953134452736, 'id_str': '783839953134452736', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/CuDCSM9WgAAp9eo.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CuDCSM9WgAAp9eo.jpg', 'url': 'https://t.co/8TCQcsZCZ8', 'display_url': 'pic.twitter.com/8TCQcsZCZ8', 'expanded_url': 'https://twitter.com/dog_rates/status/783839966405230592/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9992, 'favorite_count': 28276, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 9992, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Mon Mar 06 01:26:54 +0000 2017', 'id': 838561493054533637, 'id_str': '838561493054533637', 'full_text': "This is Walter. His owner has been watching all the Iditarod coverage and is convinced Walter can be a sled dog. 13/10 Walter isn't so sure https://t.co/0av1PEehFI", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 838561486968668161, 'id_str': '838561486968668161', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg', 'url': 'https://t.co/0av1PEehFI', 'display_url': 'pic.twitter.com/0av1PEehFI', 'expanded_url': 'https://twitter.com/dog_rates/status/838561493054533637/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 838561486968668161, 'id_str': '838561486968668161', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg', 'url': 'https://t.co/0av1PEehFI', 'display_url': 'pic.twitter.com/0av1PEehFI', 'expanded_url': 'https://twitter.com/dog_rates/status/838561493054533637/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1229, 'favorite_count': 10217, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Mar 05 19:48:43 +0000 2017', 'id': 838476387338051585, 'id_str': '838476387338051585', 'full_text': "This is Stanley. Somehow he heard you tell him he's a good boy from all the way up there. 13/10 I love you Stanley https://t.co/51FXNuouHI", 'truncated': False, 'display_text_range': [0, 114], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 838476379071086592, 'id_str': '838476379071086592', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/C6Ld0wcWgAAF0xR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6Ld0wcWgAAF0xR.jpg', 'url': 'https://t.co/51FXNuouHI', 'display_url': 'pic.twitter.com/51FXNuouHI', 'expanded_url': 'https://twitter.com/dog_rates/status/838476387338051585/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 838476379071086592, 'id_str': '838476379071086592', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/C6Ld0wcWgAAF0xR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6Ld0wcWgAAF0xR.jpg', 'url': 'https://t.co/51FXNuouHI', 'display_url': 'pic.twitter.com/51FXNuouHI', 'expanded_url': 'https://twitter.com/dog_rates/status/838476387338051585/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}, {'id': 838476379054288897, 'id_str': '838476379054288897', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/C6Ld0wYWMAEEwEO.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6Ld0wYWMAEEwEO.jpg', 'url': 'https://t.co/51FXNuouHI', 'display_url': 'pic.twitter.com/51FXNuouHI', 'expanded_url': 'https://twitter.com/dog_rates/status/838476387338051585/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}, {'id': 838476379054309380, 'id_str': '838476379054309380', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg', 'url': 'https://t.co/51FXNuouHI', 'display_url': 'pic.twitter.com/51FXNuouHI', 'expanded_url': 'https://twitter.com/dog_rates/status/838476387338051585/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 375, 'h': 273, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 375, 'h': 273, 'resize': 'fit'}, 'medium': {'w': 375, 'h': 273, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4330, 'favorite_count': 20915, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Mar 05 01:36:26 +0000 2017', 'id': 838201503651401729, 'id_str': '838201503651401729', 'full_text': 'RT @dog_rates: Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EM…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sun Jan 15 21:49:15 +0000 2017', 'id': 820749716845686786, 'id_str': '820749716845686786', 'full_text': 'Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EMq8Ud6Ze1', 'truncated': False, 'display_text_range': [0, 108], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 820749705474965509, 'id_str': '820749705474965509', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/C2PjgjRXgAUgKyC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2PjgjRXgAUgKyC.jpg', 'url': 'https://t.co/EMq8Ud6Ze1', 'display_url': 'pic.twitter.com/EMq8Ud6Ze1', 'expanded_url': 'https://twitter.com/dog_rates/status/820749716845686786/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 820749705474965509, 'id_str': '820749705474965509', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/C2PjgjRXgAUgKyC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2PjgjRXgAUgKyC.jpg', 'url': 'https://t.co/EMq8Ud6Ze1', 'display_url': 'pic.twitter.com/EMq8Ud6Ze1', 'expanded_url': 'https://twitter.com/dog_rates/status/820749716845686786/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 820749705470767104, 'id_str': '820749705470767104', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/C2PjgjQXcAAc4Uu.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2PjgjQXcAAc4Uu.jpg', 'url': 'https://t.co/EMq8Ud6Ze1', 'display_url': 'pic.twitter.com/EMq8Ud6Ze1', 'expanded_url': 'https://twitter.com/dog_rates/status/820749716845686786/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9149, 'favorite_count': 29705, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 9149, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sat Mar 04 22:12:52 +0000 2017', 'id': 838150277551247360, 'id_str': '838150277551247360', 'full_text': '@markhoppus 182/10', 'truncated': False, 'display_text_range': [12, 18], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'markhoppus', 'name': 'mark hoppus', 'id': 21955058, 'id_str': '21955058', 'indices': [0, 11]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 838145498691194881, 'in_reply_to_status_id_str': '838145498691194881', 'in_reply_to_user_id': 21955058, 'in_reply_to_user_id_str': '21955058', 'in_reply_to_screen_name': 'markhoppus', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 301, 'favorite_count': 1565, 'favorited': False, 'retweeted': False, 'lang': 'und'}
{'created_at': 'Sat Mar 04 17:56:49 +0000 2017', 'id': 838085839343206401, 'id_str': '838085839343206401', 'full_text': '@bragg6of8 @Andy_Pace_ we are still looking for the first 15/10', 'truncated': False, 'display_text_range': [23, 63], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'Andy_Pace_', 'name': 'hire me to write Moon Knight S2', 'id': 3235854317, 'id_str': '3235854317', 'indices': [11, 22]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 838085539362402305, 'in_reply_to_status_id_str': '838085539362402305', 'in_reply_to_user_id': 2894131180, 'in_reply_to_user_id_str': '2894131180', 'in_reply_to_screen_name': 'SweetsyPeets', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1, 'favorite_count': 134, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sat Mar 04 17:49:08 +0000 2017', 'id': 838083903487373313, 'id_str': '838083903487373313', 'full_text': "This is Daisy. She's puppears to be rare as all h*ck. Only seven like her currently domesticated. 13/10 pettable af https://t.co/meUc8jufAO", 'truncated': False, 'display_text_range': [0, 115], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 838083881886633984, 'id_str': '838083881886633984', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/C6F42afVUAA9Wlz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6F42afVUAA9Wlz.jpg', 'url': 'https://t.co/meUc8jufAO', 'display_url': 'pic.twitter.com/meUc8jufAO', 'expanded_url': 'https://twitter.com/dog_rates/status/838083903487373313/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 838083881886633984, 'id_str': '838083881886633984', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/C6F42afVUAA9Wlz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6F42afVUAA9Wlz.jpg', 'url': 'https://t.co/meUc8jufAO', 'display_url': 'pic.twitter.com/meUc8jufAO', 'expanded_url': 'https://twitter.com/dog_rates/status/838083903487373313/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}, {'id': 838083882318585856, 'id_str': '838083882318585856', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg', 'url': 'https://t.co/meUc8jufAO', 'display_url': 'pic.twitter.com/meUc8jufAO', 'expanded_url': 'https://twitter.com/dog_rates/status/838083903487373313/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2831, 'favorite_count': 16413, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Mar 04 00:21:08 +0000 2017', 'id': 837820167694528512, 'id_str': '837820167694528512', 'full_text': 'Here\'s a pupper before and after being asked "who\'s a good girl?" Unsure as h*ck. 12/10 hint hint it\'s you https://t.co/ORiK6jlgdH', 'truncated': False, 'display_text_range': [0, 106], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 837820156113911808, 'id_str': '837820156113911808', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg', 'url': 'https://t.co/ORiK6jlgdH', 'display_url': 'pic.twitter.com/ORiK6jlgdH', 'expanded_url': 'https://twitter.com/dog_rates/status/837820167694528512/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 489, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 863, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1472, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 837820156113911808, 'id_str': '837820156113911808', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg', 'url': 'https://t.co/ORiK6jlgdH', 'display_url': 'pic.twitter.com/ORiK6jlgdH', 'expanded_url': 'https://twitter.com/dog_rates/status/837820167694528512/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 489, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 863, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1472, 'h': 2048, 'resize': 'fit'}}}, {'id': 837820156109676544, 'id_str': '837820156109676544', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C6CI_jaUYAAYO0H.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C6CI_jaUYAAYO0H.jpg', 'url': 'https://t.co/ORiK6jlgdH', 'display_url': 'pic.twitter.com/ORiK6jlgdH', 'expanded_url': 'https://twitter.com/dog_rates/status/837820167694528512/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1388, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 813, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 461, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7133, 'favorite_count': 31749, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Mar 03 01:58:22 +0000 2017', 'id': 837482249356513284, 'id_str': '837482249356513284', 'full_text': "This is Waffles. He's a ship captain in real life and in @GoodDogsGame. Must've gotten to the max level (wink) 13/10 would sail with https://t.co/Z3LAaV2pKz", 'truncated': False, 'display_text_range': [0, 132], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'GoodDogsGame', 'name': 'Good Dogs', 'id': 827593379009675264, 'id_str': '827593379009675264', 'indices': [57, 70]}], 'urls': [], 'media': [{'id': 837482239088820224, 'id_str': '837482239088820224', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/C59VqMaWgAApfBl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C59VqMaWgAApfBl.jpg', 'url': 'https://t.co/Z3LAaV2pKz', 'display_url': 'pic.twitter.com/Z3LAaV2pKz', 'expanded_url': 'https://twitter.com/dog_rates/status/837482249356513284/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 661, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1167, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1991, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 837482239088820224, 'id_str': '837482239088820224', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/C59VqMaWgAApfBl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C59VqMaWgAApfBl.jpg', 'url': 'https://t.co/Z3LAaV2pKz', 'display_url': 'pic.twitter.com/Z3LAaV2pKz', 'expanded_url': 'https://twitter.com/dog_rates/status/837482249356513284/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 661, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1167, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1991, 'resize': 'fit'}}}, {'id': 837482239063691264, 'id_str': '837482239063691264', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg', 'url': 'https://t.co/Z3LAaV2pKz', 'display_url': 'pic.twitter.com/Z3LAaV2pKz', 'expanded_url': 'https://twitter.com/dog_rates/status/837482249356513284/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 422, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 744, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1076, 'h': 1735, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 405, 'favorite_count': 3595, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Mar 03 01:14:41 +0000 2017', 'id': 837471256429613056, 'id_str': '837471256429613056', 'full_text': "This is Vincent. He's suave as h*ck. Will be your copilot this evening. Claims he doesn't need to look at the directions. 12/10 https://t.co/u51tzXSVi3", 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 837471224582262785, 'id_str': '837471224582262785', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg', 'url': 'https://t.co/u51tzXSVi3', 'display_url': 'pic.twitter.com/u51tzXSVi3', 'expanded_url': 'https://twitter.com/dog_rates/status/837471256429613056/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 837471224582262785, 'id_str': '837471224582262785', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg', 'url': 'https://t.co/u51tzXSVi3', 'display_url': 'pic.twitter.com/u51tzXSVi3', 'expanded_url': 'https://twitter.com/dog_rates/status/837471256429613056/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 837471224569729024, 'id_str': '837471224569729024', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C59LpEIXEAAwfS9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C59LpEIXEAAwfS9.jpg', 'url': 'https://t.co/u51tzXSVi3', 'display_url': 'pic.twitter.com/u51tzXSVi3', 'expanded_url': 'https://twitter.com/dog_rates/status/837471256429613056/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2058, 'favorite_count': 11955, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Mar 02 01:20:01 +0000 2017', 'id': 837110210464448512, 'id_str': '837110210464448512', 'full_text': 'This is Clark. He passed pupper training today. Round of appaws for Clark. 13/10 https://t.co/7pUjwe8X6B', 'truncated': False, 'display_text_range': [0, 80], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 837110202889617409, 'id_str': '837110202889617409', 'indices': [81, 104], 'media_url': 'http://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg', 'url': 'https://t.co/7pUjwe8X6B', 'display_url': 'pic.twitter.com/7pUjwe8X6B', 'expanded_url': 'https://twitter.com/dog_rates/status/837110210464448512/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 545, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1640, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 961, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 837110202889617409, 'id_str': '837110202889617409', 'indices': [81, 104], 'media_url': 'http://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg', 'url': 'https://t.co/7pUjwe8X6B', 'display_url': 'pic.twitter.com/7pUjwe8X6B', 'expanded_url': 'https://twitter.com/dog_rates/status/837110210464448512/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 545, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1640, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 961, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2173, 'favorite_count': 15040, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Mar 01 17:22:13 +0000 2017', 'id': 836989968035819520, 'id_str': '836989968035819520', 'full_text': 'This is Mookie. He really enjoys shopping but not from such high altitudes. Doin him quite the concern. 12/10 someone lower him https://t.co/beWUzGVKRM', 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 836989950847512576, 'id_str': '836989950847512576', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg', 'url': 'https://t.co/beWUzGVKRM', 'display_url': 'pic.twitter.com/beWUzGVKRM', 'expanded_url': 'https://twitter.com/dog_rates/status/836989968035819520/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 836989950847512576, 'id_str': '836989950847512576', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg', 'url': 'https://t.co/beWUzGVKRM', 'display_url': 'pic.twitter.com/beWUzGVKRM', 'expanded_url': 'https://twitter.com/dog_rates/status/836989968035819520/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2107, 'favorite_count': 11918, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Mar 01 01:42:39 +0000 2017', 'id': 836753516572119041, 'id_str': '836753516572119041', 'full_text': 'This is Meera. She just heard about taxes and how much a doghouse in a nice area costs. Not pupared to be a  doggo anymore. 12/10 https://t.co/GZmNEdyoJY', 'truncated': False, 'display_text_range': [0, 129], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 836753505905963010, 'id_str': '836753505905963010', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg', 'url': 'https://t.co/GZmNEdyoJY', 'display_url': 'pic.twitter.com/GZmNEdyoJY', 'expanded_url': 'https://twitter.com/dog_rates/status/836753516572119041/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 836753505905963010, 'id_str': '836753505905963010', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg', 'url': 'https://t.co/GZmNEdyoJY', 'display_url': 'pic.twitter.com/GZmNEdyoJY', 'expanded_url': 'https://twitter.com/dog_rates/status/836753516572119041/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4251, 'favorite_count': 18071, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Feb 28 20:41:37 +0000 2017', 'id': 836677758902222849, 'id_str': '836677758902222849', 'full_text': "Say hello to Oliver. He's pretty exotic. Fairly pupset as well. Too many midterms coming pup. 11/10 would pet with extreme caution https://t.co/fGAPAsxjKs", 'truncated': False, 'display_text_range': [0, 130], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 836677701918392320, 'id_str': '836677701918392320', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/media/C5x5795WAAAN0oO.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5x5795WAAAN0oO.jpg', 'url': 'https://t.co/fGAPAsxjKs', 'display_url': 'pic.twitter.com/fGAPAsxjKs', 'expanded_url': 'https://twitter.com/dog_rates/status/836677758902222849/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1362, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 798, 'resize': 'fit'}, 'small': {'w': 680, 'h': 452, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 836677701918392320, 'id_str': '836677701918392320', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/media/C5x5795WAAAN0oO.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5x5795WAAAN0oO.jpg', 'url': 'https://t.co/fGAPAsxjKs', 'display_url': 'pic.twitter.com/fGAPAsxjKs', 'expanded_url': 'https://twitter.com/dog_rates/status/836677758902222849/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1362, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 798, 'resize': 'fit'}, 'small': {'w': 680, 'h': 452, 'resize': 'fit'}}}, {'id': 836677702027464705, 'id_str': '836677702027464705', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg', 'url': 'https://t.co/fGAPAsxjKs', 'display_url': 'pic.twitter.com/fGAPAsxjKs', 'expanded_url': 'https://twitter.com/dog_rates/status/836677758902222849/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1362, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 452, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 798, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2019, 'favorite_count': 11817, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Feb 28 18:46:45 +0000 2017', 'id': 836648853927522308, 'id_str': '836648853927522308', 'full_text': 'RT @SchafeBacon2016: @dog_rates Slightly disturbed by the outright profanity, but confident doggos were involved. 11/10, would tailgate aga…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [21, 31]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Tue Feb 28 18:43:57 +0000 2017', 'id': 836648149003485187, 'id_str': '836648149003485187', 'full_text': '@dog_rates Slightly disturbed by the outright profanity, but confident doggos were involved. 11/10, would tailgate again. https://t.co/VhRqF24Zaa', 'truncated': False, 'display_text_range': [0, 121], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [0, 10]}], 'urls': [], 'media': [{'id': 836648138135908352, 'id_str': '836648138135908352', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C5xfDIOVMAAFWzv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5xfDIOVMAAFWzv.jpg', 'url': 'https://t.co/VhRqF24Zaa', 'display_url': 'pic.twitter.com/VhRqF24Zaa', 'expanded_url': 'https://twitter.com/SchafeBacon2016/status/836648149003485187/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 906, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1547, 'resize': 'fit'}, 'small': {'w': 680, 'h': 514, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 836648138135908352, 'id_str': '836648138135908352', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C5xfDIOVMAAFWzv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5xfDIOVMAAFWzv.jpg', 'url': 'https://t.co/VhRqF24Zaa', 'display_url': 'pic.twitter.com/VhRqF24Zaa', 'expanded_url': 'https://twitter.com/SchafeBacon2016/status/836648149003485187/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 906, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1547, 'resize': 'fit'}, 'small': {'w': 680, 'h': 514, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': 4196983835, 'in_reply_to_user_id_str': '4196983835', 'in_reply_to_screen_name': 'dog_rates', 'user': {'id': 712457247234756608, 'id_str': '712457247234756608', 'name': 'Allison Schafer', 'screen_name': 'allisoneschafer', 'location': 'Iowa, USA', 'description': '', 'url': None, 'entities': {'description': {'urls': []}}, 'protected': False, 'followers_count': 80, 'friends_count': 139, 'listed_count': 2, 'created_at': 'Wed Mar 23 01:53:39 +0000 2016', 'favourites_count': 471, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': False, 'statuses_count': 136, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1252150145816293376/6qNTvcKG_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1252150145816293376/6qNTvcKG_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/712457247234756608/1587370836', 'profile_link_color': 'E81C4F', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 505, 'favorite_count': 6080, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 505, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Tue Feb 28 02:09:08 +0000 2017', 'id': 836397794269200385, 'id_str': '836397794269200385', 'full_text': "RT @dog_rates: This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https:/…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sat Jan 07 20:18:46 +0000 2017', 'id': 817827839487737858, 'id_str': '817827839487737858', 'full_text': "This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https://t.co/q2BgNIi3OA", 'truncated': False, 'display_text_range': [0, 116], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 817827663108771841, 'id_str': '817827663108771841', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/817827663108771841/pu/img/e9oi839RGWJR37jF.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/817827663108771841/pu/img/e9oi839RGWJR37jF.jpg', 'url': 'https://t.co/q2BgNIi3OA', 'display_url': 'pic.twitter.com/q2BgNIi3OA', 'expanded_url': 'https://twitter.com/dog_rates/status/817827839487737858/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 406, 'h': 720, 'resize': 'fit'}, 'large': {'w': 406, 'h': 720, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 817827663108771841, 'id_str': '817827663108771841', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/817827663108771841/pu/img/e9oi839RGWJR37jF.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/817827663108771841/pu/img/e9oi839RGWJR37jF.jpg', 'url': 'https://t.co/q2BgNIi3OA', 'display_url': 'pic.twitter.com/q2BgNIi3OA', 'expanded_url': 'https://twitter.com/dog_rates/status/817827839487737858/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 406, 'h': 720, 'resize': 'fit'}, 'large': {'w': 406, 'h': 720, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [203, 360], 'duration_millis': 63167, 'variants': [{'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/817827663108771841/pu/vid/180x320/IrfbBqsst8qEXxNG.mp4'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/817827663108771841/pu/vid/360x640/O3a0D7xslG80E2QM.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/817827663108771841/pu/pl/0ec0OHgwuDKE45Wv.m3u8'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 24990, 'favorite_count': 48397, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 24990, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Tue Feb 28 01:00:19 +0000 2017', 'id': 836380477523124226, 'id_str': '836380477523124226', 'full_text': 'This is Ava. She just blasted off. Streamline af. Aerodynamic as h*ck. One small step for pupper, one giant leap for pupkind. 12/10 https://t.co/W4KffrdX3Q', 'truncated': False, 'display_text_range': [0, 131], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 836380472099897348, 'id_str': '836380472099897348', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg', 'url': 'https://t.co/W4KffrdX3Q', 'display_url': 'pic.twitter.com/W4KffrdX3Q', 'expanded_url': 'https://twitter.com/dog_rates/status/836380477523124226/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 790, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 448, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1349, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 836380472099897348, 'id_str': '836380472099897348', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg', 'url': 'https://t.co/W4KffrdX3Q', 'display_url': 'pic.twitter.com/W4KffrdX3Q', 'expanded_url': 'https://twitter.com/dog_rates/status/836380477523124226/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 790, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 448, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1349, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2744, 'favorite_count': 13874, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Feb 27 17:01:56 +0000 2017', 'id': 836260088725786625, 'id_str': '836260088725786625', 'full_text': 'This is Lucy. She spent all morning overseeing the shoveling of the driveway. H*ckin hard work. 13/10 very good girl Lucy https://t.co/gA2GECjiQD', 'truncated': False, 'display_text_range': [0, 121], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 836260074393747456, 'id_str': '836260074393747456', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg', 'url': 'https://t.co/gA2GECjiQD', 'display_url': 'pic.twitter.com/gA2GECjiQD', 'expanded_url': 'https://twitter.com/dog_rates/status/836260088725786625/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1537, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 836260074393747456, 'id_str': '836260074393747456', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg', 'url': 'https://t.co/gA2GECjiQD', 'display_url': 'pic.twitter.com/gA2GECjiQD', 'expanded_url': 'https://twitter.com/dog_rates/status/836260088725786625/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1537, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 901, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3969, 'favorite_count': 19900, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Feb 26 23:52:43 +0000 2017', 'id': 836001077879255040, 'id_str': '836001077879255040', 'full_text': "Atlas is back and this time he's prettier than the sunset. Seems to be aware of it too. 13/10 would give modeling contract https://t.co/uRdKlFArQE", 'truncated': False, 'display_text_range': [0, 122], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 836001068119019522, 'id_str': '836001068119019522', 'indices': [123, 146], 'media_url': 'http://pbs.twimg.com/media/C5oSiskU0AI2lcZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5oSiskU0AI2lcZ.jpg', 'url': 'https://t.co/uRdKlFArQE', 'display_url': 'pic.twitter.com/uRdKlFArQE', 'expanded_url': 'https://twitter.com/dog_rates/status/836001077879255040/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 822, 'resize': 'fit'}, 'large': {'w': 1990, 'h': 1363, 'resize': 'fit'}, 'small': {'w': 680, 'h': 466, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 836001068119019522, 'id_str': '836001068119019522', 'indices': [123, 146], 'media_url': 'http://pbs.twimg.com/media/C5oSiskU0AI2lcZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5oSiskU0AI2lcZ.jpg', 'url': 'https://t.co/uRdKlFArQE', 'display_url': 'pic.twitter.com/uRdKlFArQE', 'expanded_url': 'https://twitter.com/dog_rates/status/836001077879255040/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 822, 'resize': 'fit'}, 'large': {'w': 1990, 'h': 1363, 'resize': 'fit'}, 'small': {'w': 680, 'h': 466, 'resize': 'fit'}}}, {'id': 836001068119011328, 'id_str': '836001068119011328', 'indices': [123, 146], 'media_url': 'http://pbs.twimg.com/media/C5oSiskUsAACY0S.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5oSiskUsAACY0S.jpg', 'url': 'https://t.co/uRdKlFArQE', 'display_url': 'pic.twitter.com/uRdKlFArQE', 'expanded_url': 'https://twitter.com/dog_rates/status/836001077879255040/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 819, 'resize': 'fit'}, 'large': {'w': 1996, 'h': 1363, 'resize': 'fit'}, 'small': {'w': 680, 'h': 464, 'resize': 'fit'}}}, {'id': 836001068127440896, 'id_str': '836001068127440896', 'indices': [123, 146], 'media_url': 'http://pbs.twimg.com/media/C5oSismVUAAZ3OW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5oSismVUAAZ3OW.jpg', 'url': 'https://t.co/uRdKlFArQE', 'display_url': 'pic.twitter.com/uRdKlFArQE', 'expanded_url': 'https://twitter.com/dog_rates/status/836001077879255040/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1364, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 799, 'resize': 'fit'}}}, {'id': 836001068119019521, 'id_str': '836001068119019521', 'indices': [123, 146], 'media_url': 'http://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg', 'url': 'https://t.co/uRdKlFArQE', 'display_url': 'pic.twitter.com/uRdKlFArQE', 'expanded_url': 'https://twitter.com/dog_rates/status/836001077879255040/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 822, 'resize': 'fit'}, 'large': {'w': 1990, 'h': 1363, 'resize': 'fit'}, 'small': {'w': 680, 'h': 466, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3877, 'favorite_count': 17848, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Feb 26 02:57:52 +0000 2017', 'id': 835685285446955009, 'id_str': '835685285446955009', 'full_text': "RT @dog_rates: This is Rory. He's got an interview in a few minutes. Looking spiffy af. Nervous as h*ck tho. 12/10 would hire https://t.co/…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Fri Oct 14 16:13:10 +0000 2016', 'id': 786963064373534720, 'id_str': '786963064373534720', 'full_text': "This is Rory. He's got an interview in a few minutes. Looking spiffy af. Nervous as h*ck tho. 12/10 would hire https://t.co/ibj5g6xaAj", 'truncated': False, 'display_text_range': [0, 110], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 786963058530906112, 'id_str': '786963058530906112', 'indices': [111, 134], 'media_url': 'http://pbs.twimg.com/media/Cuvau3MW8AAxaRv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Cuvau3MW8AAxaRv.jpg', 'url': 'https://t.co/ibj5g6xaAj', 'display_url': 'pic.twitter.com/ibj5g6xaAj', 'expanded_url': 'https://twitter.com/dog_rates/status/786963064373534720/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 786963058530906112, 'id_str': '786963058530906112', 'indices': [111, 134], 'media_url': 'http://pbs.twimg.com/media/Cuvau3MW8AAxaRv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Cuvau3MW8AAxaRv.jpg', 'url': 'https://t.co/ibj5g6xaAj', 'display_url': 'pic.twitter.com/ibj5g6xaAj', 'expanded_url': 'https://twitter.com/dog_rates/status/786963064373534720/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7396, 'favorite_count': 25177, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 7396, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sat Feb 25 19:37:50 +0000 2017', 'id': 835574547218894849, 'id_str': '835574547218894849', 'full_text': 'This is Eli. He works backstage at Bone Jovi concerts. Heavy duty earmuffs for puptection. H*ckin safe boy. 11/10 https://t.co/cVQEnUQd8q', 'truncated': False, 'display_text_range': [0, 113], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 835574540805763072, 'id_str': '835574540805763072', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg', 'url': 'https://t.co/cVQEnUQd8q', 'display_url': 'pic.twitter.com/cVQEnUQd8q', 'expanded_url': 'https://twitter.com/dog_rates/status/835574547218894849/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 835574540805763072, 'id_str': '835574540805763072', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg', 'url': 'https://t.co/cVQEnUQd8q', 'display_url': 'pic.twitter.com/cVQEnUQd8q', 'expanded_url': 'https://twitter.com/dog_rates/status/835574547218894849/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 835574540805734400, 'id_str': '835574540805734400', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C5iOnigWAAA25os.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5iOnigWAAA25os.jpg', 'url': 'https://t.co/cVQEnUQd8q', 'display_url': 'pic.twitter.com/cVQEnUQd8q', 'expanded_url': 'https://twitter.com/dog_rates/status/835574547218894849/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3289, 'favorite_count': 16601, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Feb 25 17:06:32 +0000 2017', 'id': 835536468978302976, 'id_str': '835536468978302976', 'full_text': 'RT @dog_rates: Meet Lola. Her hobbies include being precious af and using her foot as a toothbrush. 12/10 Lola requests your help\n\nhttps://…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Fri Feb 24 23:04:14 +0000 2017', 'id': 835264098648616962, 'id_str': '835264098648616962', 'full_text': 'Meet Lola. Her hobbies include being precious af and using her foot as a toothbrush. 12/10 Lola requests your help\n\nhttps://t.co/FYFyHh7rir https://t.co/IiB7ggduoU', 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/FYFyHh7rir', 'expanded_url': 'https://www.gofundme.com/lolas-life-saving-surgery-funds', 'display_url': 'gofundme.com/lolas-life-sav…', 'indices': [116, 139]}], 'media': [{'id': 835264086267072512, 'id_str': '835264086267072512', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C5d0QtOXEAAIANz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5d0QtOXEAAIANz.jpg', 'url': 'https://t.co/IiB7ggduoU', 'display_url': 'pic.twitter.com/IiB7ggduoU', 'expanded_url': 'https://twitter.com/dog_rates/status/835264098648616962/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 835264086267072512, 'id_str': '835264086267072512', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C5d0QtOXEAAIANz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5d0QtOXEAAIANz.jpg', 'url': 'https://t.co/IiB7ggduoU', 'display_url': 'pic.twitter.com/IiB7ggduoU', 'expanded_url': 'https://twitter.com/dog_rates/status/835264098648616962/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}, {'id': 835264086405492738, 'id_str': '835264086405492738', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg', 'url': 'https://t.co/IiB7ggduoU', 'display_url': 'pic.twitter.com/IiB7ggduoU', 'expanded_url': 'https://twitter.com/dog_rates/status/835264098648616962/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1539, 'favorite_count': 7206, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 1539, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sat Feb 25 02:03:02 +0000 2017', 'id': 835309094223372289, 'id_str': '835309094223372289', 'full_text': 'RT @dog_rates: So this just changed my life. 13/10 please enjoy  https://t.co/dsv4xAtfv7', 'truncated': False, 'display_text_range': [0, 88], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [{'url': 'https://t.co/dsv4xAtfv7', 'expanded_url': 'https://vine.co/v/5W2Dg3XPX7a', 'display_url': 'vine.co/v/5W2Dg3XPX7a', 'indices': [65, 88]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Wed Jul 13 01:34:21 +0000 2016', 'id': 753039830821511168, 'id_str': '753039830821511168', 'full_text': 'So this just changed my life. 13/10 please enjoy  https://t.co/dsv4xAtfv7', 'truncated': False, 'display_text_range': [0, 73], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/dsv4xAtfv7', 'expanded_url': 'https://vine.co/v/5W2Dg3XPX7a', 'display_url': 'vine.co/v/5W2Dg3XPX7a', 'indices': [50, 73]}]}, 'source': '<a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 19092, 'favorite_count': 34479, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 19092, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Feb 25 01:18:40 +0000 2017', 'id': 835297930240217089, 'id_str': '835297930240217089', 'full_text': "Meet Ash. He's a Benebop Cumberplop. Quite rare. Fairly portable. Lil sandy tho. Clearly knows something you don't. 12/10 would hug softly https://t.co/1U0z6r5LSO", 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 835297922317070336, 'id_str': '835297922317070336', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg', 'url': 'https://t.co/1U0z6r5LSO', 'display_url': 'pic.twitter.com/1U0z6r5LSO', 'expanded_url': 'https://twitter.com/dog_rates/status/835297930240217089/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1830, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 1072, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 608, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 835297922317070336, 'id_str': '835297922317070336', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg', 'url': 'https://t.co/1U0z6r5LSO', 'display_url': 'pic.twitter.com/1U0z6r5LSO', 'expanded_url': 'https://twitter.com/dog_rates/status/835297930240217089/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1830, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 1072, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 608, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2733, 'favorite_count': 15393, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Feb 24 23:04:14 +0000 2017', 'id': 835264098648616962, 'id_str': '835264098648616962', 'full_text': 'Meet Lola. Her hobbies include being precious af and using her foot as a toothbrush. 12/10 Lola requests your help\n\nhttps://t.co/FYFyHh7rir https://t.co/IiB7ggduoU', 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/FYFyHh7rir', 'expanded_url': 'https://www.gofundme.com/lolas-life-saving-surgery-funds', 'display_url': 'gofundme.com/lolas-life-sav…', 'indices': [116, 139]}], 'media': [{'id': 835264086267072512, 'id_str': '835264086267072512', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C5d0QtOXEAAIANz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5d0QtOXEAAIANz.jpg', 'url': 'https://t.co/IiB7ggduoU', 'display_url': 'pic.twitter.com/IiB7ggduoU', 'expanded_url': 'https://twitter.com/dog_rates/status/835264098648616962/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 835264086267072512, 'id_str': '835264086267072512', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C5d0QtOXEAAIANz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5d0QtOXEAAIANz.jpg', 'url': 'https://t.co/IiB7ggduoU', 'display_url': 'pic.twitter.com/IiB7ggduoU', 'expanded_url': 'https://twitter.com/dog_rates/status/835264098648616962/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}, {'id': 835264086405492738, 'id_str': '835264086405492738', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg', 'url': 'https://t.co/IiB7ggduoU', 'display_url': 'pic.twitter.com/IiB7ggduoU', 'expanded_url': 'https://twitter.com/dog_rates/status/835264098648616962/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1539, 'favorite_count': 7206, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Feb 24 21:54:03 +0000 2017', 'id': 835246439529840640, 'id_str': '835246439529840640', 'full_text': "@jonnysun @Lin_Manuel ok jomny I know you're excited but 960/00 isn't a valid rating, 13/10 is tho", 'truncated': False, 'display_text_range': [22, 98], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'jonnysun', 'name': 'jonny sun', 'id': 26259576, 'id_str': '26259576', 'indices': [0, 9]}, {'screen_name': 'Lin_Manuel', 'name': 'Lin-Manuel Miranda', 'id': 79923701, 'id_str': '79923701', 'indices': [10, 21]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 835245984028504066, 'in_reply_to_status_id_str': '835245984028504066', 'in_reply_to_user_id': 26259576, 'in_reply_to_user_id_str': '26259576', 'in_reply_to_screen_name': 'jonnysun', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 63, 'favorite_count': 1987, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Fri Feb 24 17:01:22 +0000 2017', 'id': 835172783151792128, 'id_str': '835172783151792128', 'full_text': "We only rate dogs. Please don't send in any non-canines like this Floppy Tongued House Panda. Thank you... 12/10 would still pet https://t.co/8fX2VkExnL", 'truncated': False, 'display_text_range': [0, 128], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 835172763019194370, 'id_str': '835172763019194370', 'indices': [129, 152], 'media_url': 'http://pbs.twimg.com/media/C5chM_nXMAIiK0u.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5chM_nXMAIiK0u.jpg', 'url': 'https://t.co/8fX2VkExnL', 'display_url': 'pic.twitter.com/8fX2VkExnL', 'expanded_url': 'https://twitter.com/dog_rates/status/835172783151792128/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 835172763019194370, 'id_str': '835172763019194370', 'indices': [129, 152], 'media_url': 'http://pbs.twimg.com/media/C5chM_nXMAIiK0u.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5chM_nXMAIiK0u.jpg', 'url': 'https://t.co/8fX2VkExnL', 'display_url': 'pic.twitter.com/8fX2VkExnL', 'expanded_url': 'https://twitter.com/dog_rates/status/835172783151792128/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 835172763002339332, 'id_str': '835172763002339332', 'indices': [129, 152], 'media_url': 'http://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg', 'url': 'https://t.co/8fX2VkExnL', 'display_url': 'pic.twitter.com/8fX2VkExnL', 'expanded_url': 'https://twitter.com/dog_rates/status/835172783151792128/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5283, 'favorite_count': 24506, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Feb 24 15:40:31 +0000 2017', 'id': 835152434251116546, 'id_str': '835152434251116546', 'full_text': "When you're so blinded by your systematic plagiarism that you forget what day it is. 0/10 https://t.co/YbEJPkg4Ag", 'truncated': False, 'display_text_range': [0, 89], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 835152428160978949, 'id_str': '835152428160978949', 'indices': [90, 113], 'media_url': 'http://pbs.twimg.com/media/C5cOtWXXEAUb9uj.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5cOtWXXEAUb9uj.jpg', 'url': 'https://t.co/YbEJPkg4Ag', 'display_url': 'pic.twitter.com/YbEJPkg4Ag', 'expanded_url': 'https://twitter.com/dog_rates/status/835152434251116546/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 584, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 873, 'resize': 'fit'}, 'large': {'w': 750, 'h': 873, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 835152428160978949, 'id_str': '835152428160978949', 'indices': [90, 113], 'media_url': 'http://pbs.twimg.com/media/C5cOtWXXEAUb9uj.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5cOtWXXEAUb9uj.jpg', 'url': 'https://t.co/YbEJPkg4Ag', 'display_url': 'pic.twitter.com/YbEJPkg4Ag', 'expanded_url': 'https://twitter.com/dog_rates/status/835152434251116546/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 584, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 873, 'resize': 'fit'}, 'large': {'w': 750, 'h': 873, 'resize': 'fit'}}}, {'id': 835152428152602626, 'id_str': '835152428152602626', 'indices': [90, 113], 'media_url': 'http://pbs.twimg.com/media/C5cOtWVXQAIpnsg.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5cOtWVXQAIpnsg.jpg', 'url': 'https://t.co/YbEJPkg4Ag', 'display_url': 'pic.twitter.com/YbEJPkg4Ag', 'expanded_url': 'https://twitter.com/dog_rates/status/835152434251116546/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 750, 'h': 901, 'resize': 'fit'}, 'large': {'w': 750, 'h': 901, 'resize': 'fit'}, 'small': {'w': 566, 'h': 680, 'resize': 'fit'}}}, {'id': 835152428152532993, 'id_str': '835152428152532993', 'indices': [90, 113], 'media_url': 'http://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg', 'url': 'https://t.co/YbEJPkg4Ag', 'display_url': 'pic.twitter.com/YbEJPkg4Ag', 'expanded_url': 'https://twitter.com/dog_rates/status/835152434251116546/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 750, 'h': 1334, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2754, 'favorite_count': 20896, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Feb 24 01:03:08 +0000 2017', 'id': 834931633769889797, 'id_str': '834931633769889797', 'full_text': 'This is Tucker. He decided it was time to part ways with his favorite ball. We captured the emotional farewell on camera. 12/10 https://t.co/jTe7Y6P0HK', 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 834931620566208513, 'id_str': '834931620566208513', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg', 'url': 'https://t.co/jTe7Y6P0HK', 'display_url': 'pic.twitter.com/jTe7Y6P0HK', 'expanded_url': 'https://twitter.com/dog_rates/status/834931633769889797/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 834931620566208513, 'id_str': '834931620566208513', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg', 'url': 'https://t.co/jTe7Y6P0HK', 'display_url': 'pic.twitter.com/jTe7Y6P0HK', 'expanded_url': 'https://twitter.com/dog_rates/status/834931633769889797/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 834931620582948866, 'id_str': '834931620582948866', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C5ZF4qCWgAIEdcI.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5ZF4qCWgAIEdcI.jpg', 'url': 'https://t.co/jTe7Y6P0HK', 'display_url': 'pic.twitter.com/jTe7Y6P0HK', 'expanded_url': 'https://twitter.com/dog_rates/status/834931633769889797/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 834931620524277762, 'id_str': '834931620524277762', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C5ZF4p0XQAIIvJQ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5ZF4p0XQAIIvJQ.jpg', 'url': 'https://t.co/jTe7Y6P0HK', 'display_url': 'pic.twitter.com/jTe7Y6P0HK', 'expanded_url': 'https://twitter.com/dog_rates/status/834931633769889797/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1486, 'favorite_count': 10072, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Feb 23 15:25:23 +0000 2017', 'id': 834786237630337024, 'id_str': '834786237630337024', 'full_text': 'This is Tobi. She is properly fetching her shot. H*ckin nifty af bandana. 13/10 would send fully armed battalion to remind her of my love https://t.co/3FIqvumEXE', 'truncated': False, 'display_text_range': [0, 137], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 834786230550290432, 'id_str': '834786230550290432', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg', 'url': 'https://t.co/3FIqvumEXE', 'display_url': 'pic.twitter.com/3FIqvumEXE', 'expanded_url': 'https://twitter.com/dog_rates/status/834786237630337024/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 834786230550290432, 'id_str': '834786230550290432', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg', 'url': 'https://t.co/3FIqvumEXE', 'display_url': 'pic.twitter.com/3FIqvumEXE', 'expanded_url': 'https://twitter.com/dog_rates/status/834786237630337024/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5099, 'favorite_count': 20167, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Feb 23 01:22:14 +0000 2017', 'id': 834574053763584002, 'id_str': '834574053763584002', 'full_text': "Here's a doggo fully pupared for a shower. H*ckin exquisite balance. Sneaky tongue slip too. 13/10 https://t.co/UtEVnQ1ZPg", 'truncated': False, 'display_text_range': [0, 98], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 834574036302757888, 'id_str': '834574036302757888', 'indices': [99, 122], 'media_url': 'http://pbs.twimg.com/media/C5UAqgyXAAAbMWH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5UAqgyXAAAbMWH.jpg', 'url': 'https://t.co/UtEVnQ1ZPg', 'display_url': 'pic.twitter.com/UtEVnQ1ZPg', 'expanded_url': 'https://twitter.com/dog_rates/status/834574053763584002/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 834574036302757888, 'id_str': '834574036302757888', 'indices': [99, 122], 'media_url': 'http://pbs.twimg.com/media/C5UAqgyXAAAbMWH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5UAqgyXAAAbMWH.jpg', 'url': 'https://t.co/UtEVnQ1ZPg', 'display_url': 'pic.twitter.com/UtEVnQ1ZPg', 'expanded_url': 'https://twitter.com/dog_rates/status/834574053763584002/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2304, 'favorite_count': 12777, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Feb 22 18:59:48 +0000 2017', 'id': 834477809192075265, 'id_str': '834477809192075265', 'full_text': "RT @dog_rates: This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me…", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Thu Feb 09 01:27:41 +0000 2017', 'id': 829501995190984704, 'id_str': '829501995190984704', 'full_text': "This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me Leo https://t.co/Xw9JbJHTul", 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 829501977667235840, 'id_str': '829501977667235840', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg', 'url': 'https://t.co/Xw9JbJHTul', 'display_url': 'pic.twitter.com/Xw9JbJHTul', 'expanded_url': 'https://twitter.com/dog_rates/status/829501995190984704/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 491, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1480, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 867, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 829501977667235840, 'id_str': '829501977667235840', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg', 'url': 'https://t.co/Xw9JbJHTul', 'display_url': 'pic.twitter.com/Xw9JbJHTul', 'expanded_url': 'https://twitter.com/dog_rates/status/829501995190984704/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 491, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1480, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 867, 'h': 1200, 'resize': 'fit'}}}, {'id': 829501977667178496, 'id_str': '829501977667178496', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C4L7p19WEAApXdK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4L7p19WEAApXdK.jpg', 'url': 'https://t.co/Xw9JbJHTul', 'display_url': 'pic.twitter.com/Xw9JbJHTul', 'expanded_url': 'https://twitter.com/dog_rates/status/829501995190984704/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1792, 'resize': 'fit'}, 'small': {'w': 680, 'h': 595, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1050, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9737, 'favorite_count': 29796, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 9737, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Wed Feb 22 17:41:18 +0000 2017', 'id': 834458053273591808, 'id_str': '834458053273591808', 'full_text': 'Meet Chester (bottom) &amp; Harold (top). They are different dogs not only in appearance, but in personality as well. Both 12/10 symbiotic af https://t.co/8ZOZS2FSJe', 'truncated': False, 'display_text_range': [0, 141], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 834458045388378116, 'id_str': '834458045388378116', 'indices': [142, 165], 'media_url': 'http://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg', 'url': 'https://t.co/8ZOZS2FSJe', 'display_url': 'pic.twitter.com/8ZOZS2FSJe', 'expanded_url': 'https://twitter.com/dog_rates/status/834458053273591808/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1148, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 673, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 381, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 834458045388378116, 'id_str': '834458045388378116', 'indices': [142, 165], 'media_url': 'http://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg', 'url': 'https://t.co/8ZOZS2FSJe', 'display_url': 'pic.twitter.com/8ZOZS2FSJe', 'expanded_url': 'https://twitter.com/dog_rates/status/834458053273591808/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1148, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 673, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 381, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1543, 'favorite_count': 9010, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Feb 22 01:14:30 +0000 2017', 'id': 834209720923721728, 'id_str': '834209720923721728', 'full_text': "This is Wilson. He's aware that he has something on his face. Waiting for you to get it for him. 12/10 https://t.co/FaeinVjzTZ", 'truncated': False, 'display_text_range': [0, 102], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 834209711306186752, 'id_str': '834209711306186752', 'indices': [103, 126], 'media_url': 'http://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg', 'url': 'https://t.co/FaeinVjzTZ', 'display_url': 'pic.twitter.com/FaeinVjzTZ', 'expanded_url': 'https://twitter.com/dog_rates/status/834209720923721728/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 834209711306186752, 'id_str': '834209711306186752', 'indices': [103, 126], 'media_url': 'http://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg', 'url': 'https://t.co/FaeinVjzTZ', 'display_url': 'pic.twitter.com/FaeinVjzTZ', 'expanded_url': 'https://twitter.com/dog_rates/status/834209720923721728/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 834209711302049793, 'id_str': '834209711302049793', 'indices': [103, 126], 'media_url': 'http://pbs.twimg.com/media/C5O1UAZXAAESGnz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5O1UAZXAAESGnz.jpg', 'url': 'https://t.co/FaeinVjzTZ', 'display_url': 'pic.twitter.com/FaeinVjzTZ', 'expanded_url': 'https://twitter.com/dog_rates/status/834209720923721728/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4314, 'favorite_count': 19191, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Feb 21 22:26:07 +0000 2017', 'id': 834167344700198914, 'id_str': '834167344700198914', 'full_text': "This is Sunshine. She doesn't believe in personal space. Eyes pretty far apart for a dog. Has horns (whoa). 11/10 would pet with wonder https://t.co/o3bhLguymB", 'truncated': False, 'display_text_range': [0, 135], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 834167335145570304, 'id_str': '834167335145570304', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg', 'url': 'https://t.co/o3bhLguymB', 'display_url': 'pic.twitter.com/o3bhLguymB', 'expanded_url': 'https://twitter.com/dog_rates/status/834167344700198914/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1364, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 799, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 834167335145570304, 'id_str': '834167335145570304', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg', 'url': 'https://t.co/o3bhLguymB', 'display_url': 'pic.twitter.com/o3bhLguymB', 'expanded_url': 'https://twitter.com/dog_rates/status/834167344700198914/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1364, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 799, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3353, 'favorite_count': 14803, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Feb 21 17:18:39 +0000 2017', 'id': 834089966724603904, 'id_str': '834089966724603904', 'full_text': 'DOGGO ON THE LOOSE I REPEAT DOGGO ON THE LOOSE 10/10 https://t.co/ffIH2WxwF0', 'truncated': False, 'display_text_range': [0, 52], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/ffIH2WxwF0', 'expanded_url': 'https://twitter.com/stevekopack/status/834086676934836224', 'display_url': 'twitter.com/stevekopack/st…', 'indices': [53, 76]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'retweet_count': 1960, 'favorite_count': 9425, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Feb 21 17:04:24 +0000 2017', 'id': 834086379323871233, 'id_str': '834086379323871233', 'full_text': "This is Lipton. He's a West Romanian Snuggle Pup. Only a few left of his kind. 12/10 would boop https://t.co/5KmXPIGgAG", 'truncated': False, 'display_text_range': [0, 95], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 834086371694362625, 'id_str': '834086371694362625', 'indices': [96, 119], 'media_url': 'http://pbs.twimg.com/media/C5NFIsjWQAEI93t.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5NFIsjWQAEI93t.jpg', 'url': 'https://t.co/5KmXPIGgAG', 'display_url': 'pic.twitter.com/5KmXPIGgAG', 'expanded_url': 'https://twitter.com/dog_rates/status/834086379323871233/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 834086371694362625, 'id_str': '834086371694362625', 'indices': [96, 119], 'media_url': 'http://pbs.twimg.com/media/C5NFIsjWQAEI93t.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5NFIsjWQAEI93t.jpg', 'url': 'https://t.co/5KmXPIGgAG', 'display_url': 'pic.twitter.com/5KmXPIGgAG', 'expanded_url': 'https://twitter.com/dog_rates/status/834086379323871233/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2036, 'favorite_count': 12204, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Feb 21 02:17:06 +0000 2017', 'id': 833863086058651648, 'id_str': '833863086058651648', 'full_text': 'This is Bentley. Hairbrushes are his favorite thing in the h*ckin world. 12/10 impawsible to say no to https://t.co/HDloTYilWZ', 'truncated': False, 'display_text_range': [0, 102], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 833863075296067585, 'id_str': '833863075296067585', 'indices': [103, 126], 'media_url': 'http://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg', 'url': 'https://t.co/HDloTYilWZ', 'display_url': 'pic.twitter.com/HDloTYilWZ', 'expanded_url': 'https://twitter.com/dog_rates/status/833863086058651648/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 833863075296067585, 'id_str': '833863075296067585', 'indices': [103, 126], 'media_url': 'http://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg', 'url': 'https://t.co/HDloTYilWZ', 'display_url': 'pic.twitter.com/HDloTYilWZ', 'expanded_url': 'https://twitter.com/dog_rates/status/833863086058651648/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 833863075291918337, 'id_str': '833863075291918337', 'indices': [103, 126], 'media_url': 'http://pbs.twimg.com/media/C5J6DIoW8AEGk72.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5J6DIoW8AEGk72.jpg', 'url': 'https://t.co/HDloTYilWZ', 'display_url': 'pic.twitter.com/HDloTYilWZ', 'expanded_url': 'https://twitter.com/dog_rates/status/833863086058651648/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1535, 'h': 1961, 'resize': 'fit'}, 'medium': {'w': 939, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 532, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2202, 'favorite_count': 12587, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Feb 20 23:50:09 +0000 2017', 'id': 833826103416520705, 'id_str': '833826103416520705', 'full_text': 'Meet Charlie. She asked u to change the channel to Animal Planet at least 6 times. Now taking matters into her own paws. 13/10 assertive af https://t.co/WTzhtfevKY', 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 833826091328430080, 'id_str': '833826091328430080', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg', 'url': 'https://t.co/WTzhtfevKY', 'display_url': 'pic.twitter.com/WTzhtfevKY', 'expanded_url': 'https://twitter.com/dog_rates/status/833826103416520705/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 673, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 748, 'h': 740, 'resize': 'fit'}, 'large': {'w': 748, 'h': 740, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 833826091328430080, 'id_str': '833826091328430080', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg', 'url': 'https://t.co/WTzhtfevKY', 'display_url': 'pic.twitter.com/WTzhtfevKY', 'expanded_url': 'https://twitter.com/dog_rates/status/833826103416520705/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 673, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 748, 'h': 740, 'resize': 'fit'}, 'large': {'w': 748, 'h': 740, 'resize': 'fit'}}}, {'id': 833826091341017088, 'id_str': '833826091341017088', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C5JYaYrVcAAvfZZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5JYaYrVcAAvfZZ.jpg', 'url': 'https://t.co/WTzhtfevKY', 'display_url': 'pic.twitter.com/WTzhtfevKY', 'expanded_url': 'https://twitter.com/dog_rates/status/833826103416520705/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 669, 'resize': 'fit'}, 'large': {'w': 750, 'h': 738, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 738, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3481, 'favorite_count': 17037, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Feb 20 17:37:34 +0000 2017', 'id': 833732339549220864, 'id_str': '833732339549220864', 'full_text': 'RT @rolltidered: This is Gabby. Now requests to be referred to as a guide dog, thanks to @dog_rates and @ShopWeRateDogs. 12/10 in my book.…', 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'rolltidered', 'name': 'Ellen M 👩🏻\u200d🦰', 'id': 44667502, 'id_str': '44667502', 'indices': [3, 15]}, {'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [89, 99]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Fri Feb 17 03:39:51 +0000 2017', 'id': 832434358292209665, 'id_str': '832434358292209665', 'full_text': 'This is Gabby. Now requests to be referred to as a guide dog, thanks to @dog_rates and @ShopWeRateDogs. 12/10 in my book. https://t.co/XTqGveDV5C', 'truncated': False, 'display_text_range': [0, 121], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [72, 82]}], 'urls': [], 'media': [{'id': 832434350536916992, 'id_str': '832434350536916992', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C41moaKWAAA2Fgk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C41moaKWAAA2Fgk.jpg', 'url': 'https://t.co/XTqGveDV5C', 'display_url': 'pic.twitter.com/XTqGveDV5C', 'expanded_url': 'https://twitter.com/rolltidered/status/832434358292209665/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1504, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 499, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 881, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 832434350536916992, 'id_str': '832434350536916992', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C41moaKWAAA2Fgk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C41moaKWAAA2Fgk.jpg', 'url': 'https://t.co/XTqGveDV5C', 'display_url': 'pic.twitter.com/XTqGveDV5C', 'expanded_url': 'https://twitter.com/rolltidered/status/832434358292209665/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1504, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 499, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 881, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 44667502, 'id_str': '44667502', 'name': 'Ellen M 👩🏻\u200d🦰', 'screen_name': 'rolltidered', 'location': 'Decatur, AL', 'description': '“I do a lot of dog petting along the way.” Blair Braverman (And me. It’s also true about me.) Moms Demand Action volunteer', 'url': None, 'entities': {'description': {'urls': []}}, 'protected': False, 'followers_count': 618, 'friends_count': 633, 'listed_count': 16, 'created_at': 'Thu Jun 04 17:26:43 +0000 2009', 'favourites_count': 314534, 'utc_offset': None, 'time_zone': None, 'geo_enabled': False, 'verified': False, 'statuses_count': 14693, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': 'EBEBEB', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme7/bg.gif', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme7/bg.gif', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1546670192117293058/ZtlNYI-R_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1546670192117293058/ZtlNYI-R_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/44667502/1543771428', 'profile_link_color': '990000', 'profile_sidebar_border_color': 'DFDFDF', 'profile_sidebar_fill_color': 'F3F3F3', 'profile_text_color': '333333', 'profile_use_background_image': True, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 203, 'favorite_count': 1888, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 203, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Mon Feb 20 17:00:04 +0000 2017', 'id': 833722901757046785, 'id_str': '833722901757046785', 'full_text': "This is Bronte. She's fairly h*ckin aerodynamic. Also patiently waiting for mom to make her a main character. 13/10 would be an honor to pet https://t.co/w1MQWO2PET", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 833722895578886144, 'id_str': '833722895578886144', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg', 'url': 'https://t.co/w1MQWO2PET', 'display_url': 'pic.twitter.com/w1MQWO2PET', 'expanded_url': 'https://twitter.com/dog_rates/status/833722901757046785/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 661, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1099, 'h': 1130, 'resize': 'fit'}, 'medium': {'w': 1099, 'h': 1130, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 833722895578886144, 'id_str': '833722895578886144', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg', 'url': 'https://t.co/w1MQWO2PET', 'display_url': 'pic.twitter.com/w1MQWO2PET', 'expanded_url': 'https://twitter.com/dog_rates/status/833722901757046785/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 661, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1099, 'h': 1130, 'resize': 'fit'}, 'medium': {'w': 1099, 'h': 1130, 'resize': 'fit'}}}, {'id': 833722895520104450, 'id_str': '833722895520104450', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C5H6jmSWAAIcP8j.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5H6jmSWAAIcP8j.jpg', 'url': 'https://t.co/w1MQWO2PET', 'display_url': 'pic.twitter.com/w1MQWO2PET', 'expanded_url': 'https://twitter.com/dog_rates/status/833722901757046785/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2989, 'favorite_count': 19627, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Feb 20 00:53:27 +0000 2017', 'id': 833479644947025920, 'id_str': '833479644947025920', 'full_text': 'This is Poppy. She just arrived. 13/10 would snug passionately https://t.co/YGeSpyN8Gu', 'truncated': False, 'display_text_range': [0, 62], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 833479630938062852, 'id_str': '833479630938062852', 'indices': [63, 86], 'media_url': 'http://pbs.twimg.com/media/C5EdTvGWQAQpghQ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5EdTvGWQAQpghQ.jpg', 'url': 'https://t.co/YGeSpyN8Gu', 'display_url': 'pic.twitter.com/YGeSpyN8Gu', 'expanded_url': 'https://twitter.com/dog_rates/status/833479644947025920/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 833479630938062852, 'id_str': '833479630938062852', 'indices': [63, 86], 'media_url': 'http://pbs.twimg.com/media/C5EdTvGWQAQpghQ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5EdTvGWQAQpghQ.jpg', 'url': 'https://t.co/YGeSpyN8Gu', 'display_url': 'pic.twitter.com/YGeSpyN8Gu', 'expanded_url': 'https://twitter.com/dog_rates/status/833479644947025920/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}, {'id': 833479630938050561, 'id_str': '833479630938050561', 'indices': [63, 86], 'media_url': 'http://pbs.twimg.com/media/C5EdTvGWEAEnI6H.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5EdTvGWEAEnI6H.jpg', 'url': 'https://t.co/YGeSpyN8Gu', 'display_url': 'pic.twitter.com/YGeSpyN8Gu', 'expanded_url': 'https://twitter.com/dog_rates/status/833479644947025920/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}, {'id': 833479633475604480, 'id_str': '833479633475604480', 'indices': [63, 86], 'media_url': 'http://pbs.twimg.com/media/C5EdT4jWEAARv2C.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C5EdT4jWEAARv2C.jpg', 'url': 'https://t.co/YGeSpyN8Gu', 'display_url': 'pic.twitter.com/YGeSpyN8Gu', 'expanded_url': 'https://twitter.com/dog_rates/status/833479644947025920/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1883, 'favorite_count': 13970, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Feb 19 01:23:00 +0000 2017', 'id': 833124694597443584, 'id_str': '833124694597443584', 'full_text': "This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https://t.co/zD97KYFaFa", 'truncated': False, 'display_text_range': [0, 118], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 833124662091542528, 'id_str': '833124662091542528', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C4_ad1GVcAAgvx6.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4_ad1GVcAAgvx6.jpg', 'url': 'https://t.co/zD97KYFaFa', 'display_url': 'pic.twitter.com/zD97KYFaFa', 'expanded_url': 'https://twitter.com/dog_rates/status/833124694597443584/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 833124662091542528, 'id_str': '833124662091542528', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C4_ad1GVcAAgvx6.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4_ad1GVcAAgvx6.jpg', 'url': 'https://t.co/zD97KYFaFa', 'display_url': 'pic.twitter.com/zD97KYFaFa', 'expanded_url': 'https://twitter.com/dog_rates/status/833124694597443584/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}, {'id': 833124662095679488, 'id_str': '833124662095679488', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C4_ad1HUkAAWbJp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4_ad1HUkAAWbJp.jpg', 'url': 'https://t.co/zD97KYFaFa', 'display_url': 'pic.twitter.com/zD97KYFaFa', 'expanded_url': 'https://twitter.com/dog_rates/status/833124694597443584/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}, {'id': 833124662099877889, 'id_str': '833124662099877889', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg', 'url': 'https://t.co/zD97KYFaFa', 'display_url': 'pic.twitter.com/zD97KYFaFa', 'expanded_url': 'https://twitter.com/dog_rates/status/833124694597443584/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1150, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 674, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4428, 'favorite_count': 18935, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Feb 18 17:00:10 +0000 2017', 'id': 832998151111966721, 'id_str': '832998151111966721', 'full_text': 'This is Rhino. He arrived at a shelter with an elaborate doggo manual for his new family, written by someone who will always love him. 13/10 https://t.co/QX1h0oqMz0', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 832998142459011073, 'id_str': '832998142459011073', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg', 'url': 'https://t.co/QX1h0oqMz0', 'display_url': 'pic.twitter.com/QX1h0oqMz0', 'expanded_url': 'https://twitter.com/dog_rates/status/832998151111966721/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 832998142459011073, 'id_str': '832998142459011073', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg', 'url': 'https://t.co/QX1h0oqMz0', 'display_url': 'pic.twitter.com/QX1h0oqMz0', 'expanded_url': 'https://twitter.com/dog_rates/status/832998151111966721/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}, {'id': 832998142471606273, 'id_str': '832998142471606273', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C49nZayUkAEPwf9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C49nZayUkAEPwf9.jpg', 'url': 'https://t.co/QX1h0oqMz0', 'display_url': 'pic.twitter.com/QX1h0oqMz0', 'expanded_url': 'https://twitter.com/dog_rates/status/832998151111966721/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 560, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 648, 'h': 787, 'resize': 'fit'}, 'large': {'w': 648, 'h': 787, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2006, 'favorite_count': 12392, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Feb 18 01:50:19 +0000 2017', 'id': 832769181346996225, 'id_str': '832769181346996225', 'full_text': 'RT @EmilieGambril: 12/10 h*cking excited about my new shirt! @dog_rates https://t.co/zFEfMTaHqU', 'truncated': False, 'display_text_range': [0, 95], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [61, 71]}], 'urls': [], 'media': [{'id': 832766375433154560, 'id_str': '832766375433154560', 'indices': [72, 95], 'media_url': 'http://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg', 'url': 'https://t.co/zFEfMTaHqU', 'display_url': 'pic.twitter.com/zFEfMTaHqU', 'expanded_url': 'https://twitter.com/EmilieGambril/status/832766382198566913/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}, 'source_status_id': 832766382198566913, 'source_status_id_str': '832766382198566913', 'source_user_id': 487197737, 'source_user_id_str': '487197737'}]}, 'extended_entities': {'media': [{'id': 832766375433154560, 'id_str': '832766375433154560', 'indices': [72, 95], 'media_url': 'http://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg', 'url': 'https://t.co/zFEfMTaHqU', 'display_url': 'pic.twitter.com/zFEfMTaHqU', 'expanded_url': 'https://twitter.com/EmilieGambril/status/832766382198566913/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}, 'source_status_id': 832766382198566913, 'source_status_id_str': '832766382198566913', 'source_user_id': 487197737, 'source_user_id_str': '487197737'}, {'id': 832766375437348865, 'id_str': '832766375437348865', 'indices': [72, 95], 'media_url': 'http://pbs.twimg.com/media/C46UmzTVMAER7ON.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C46UmzTVMAER7ON.jpg', 'url': 'https://t.co/zFEfMTaHqU', 'display_url': 'pic.twitter.com/zFEfMTaHqU', 'expanded_url': 'https://twitter.com/EmilieGambril/status/832766382198566913/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 832766382198566913, 'source_status_id_str': '832766382198566913', 'source_user_id': 487197737, 'source_user_id_str': '487197737'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sat Feb 18 01:39:12 +0000 2017', 'id': 832766382198566913, 'id_str': '832766382198566913', 'full_text': '12/10 h*cking excited about my new shirt! @dog_rates https://t.co/zFEfMTaHqU', 'truncated': False, 'display_text_range': [0, 52], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [42, 52]}], 'urls': [], 'media': [{'id': 832766375433154560, 'id_str': '832766375433154560', 'indices': [53, 76], 'media_url': 'http://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg', 'url': 'https://t.co/zFEfMTaHqU', 'display_url': 'pic.twitter.com/zFEfMTaHqU', 'expanded_url': 'https://twitter.com/EmilieGambril/status/832766382198566913/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 832766375433154560, 'id_str': '832766375433154560', 'indices': [53, 76], 'media_url': 'http://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg', 'url': 'https://t.co/zFEfMTaHqU', 'display_url': 'pic.twitter.com/zFEfMTaHqU', 'expanded_url': 'https://twitter.com/EmilieGambril/status/832766382198566913/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 832766375437348865, 'id_str': '832766375437348865', 'indices': [53, 76], 'media_url': 'http://pbs.twimg.com/media/C46UmzTVMAER7ON.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C46UmzTVMAER7ON.jpg', 'url': 'https://t.co/zFEfMTaHqU', 'display_url': 'pic.twitter.com/zFEfMTaHqU', 'expanded_url': 'https://twitter.com/EmilieGambril/status/832766382198566913/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 487197737, 'id_str': '487197737', 'name': 'Emilie Shepherd', 'screen_name': 'emshepherd18', 'location': 'Fresno, CA', 'description': 'cry on the inside like a winner ◡̈', 'url': None, 'entities': {'description': {'urls': []}}, 'protected': False, 'followers_count': 307, 'friends_count': 513, 'listed_count': 1, 'created_at': 'Thu Feb 09 03:26:12 +0000 2012', 'favourites_count': 5113, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': False, 'statuses_count': 2953, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': 'C0DEED', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1286116056004587520/wXhw4x41_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1286116056004587520/wXhw4x41_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/487197737/1597264918', 'profile_link_color': '1DA1F2', 'profile_sidebar_border_color': 'C0DEED', 'profile_sidebar_fill_color': 'DDEEF6', 'profile_text_color': '333333', 'profile_use_background_image': True, 'has_extended_profile': True, 'default_profile': True, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 38, 'favorite_count': 1188, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 38, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Feb 18 01:03:09 +0000 2017', 'id': 832757312314028032, 'id_str': '832757312314028032', 'full_text': "This is Willow. She's the official strawberry taste tester. Palate delicate af. Currently noting the subtle piquancy of this one. 13/10 https://t.co/On7muWnWSQ", 'truncated': False, 'display_text_range': [0, 135], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 832757300183994371, 'id_str': '832757300183994371', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/C46MWjWUkAMB5tb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C46MWjWUkAMB5tb.jpg', 'url': 'https://t.co/On7muWnWSQ', 'display_url': 'pic.twitter.com/On7muWnWSQ', 'expanded_url': 'https://twitter.com/dog_rates/status/832757312314028032/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1153, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 832757300183994371, 'id_str': '832757300183994371', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/C46MWjWUkAMB5tb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C46MWjWUkAMB5tb.jpg', 'url': 'https://t.co/On7muWnWSQ', 'display_url': 'pic.twitter.com/On7muWnWSQ', 'expanded_url': 'https://twitter.com/dog_rates/status/832757312314028032/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1153, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}, {'id': 832757301186486277, 'id_str': '832757301186486277', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/C46MWnFVYAUg1RK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C46MWnFVYAUg1RK.jpg', 'url': 'https://t.co/On7muWnWSQ', 'display_url': 'pic.twitter.com/On7muWnWSQ', 'expanded_url': 'https://twitter.com/dog_rates/status/832757312314028032/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1639, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3312, 'favorite_count': 15818, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Feb 17 20:05:43 +0000 2017', 'id': 832682457690300417, 'id_str': '832682457690300417', 'full_text': 'Prosperous good boy 13/10 socioeconomic af https://t.co/8YlD5lxPbQ', 'truncated': False, 'display_text_range': [0, 42], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/8YlD5lxPbQ', 'expanded_url': 'https://twitter.com/telegraph/status/832268302944579584', 'display_url': 'twitter.com/telegraph/stat…', 'indices': [43, 66]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'quoted_status_id': 832268302944579584, 'quoted_status_id_str': '832268302944579584', 'quoted_status_permalink': {'url': 'https://t.co/8YlD5lxPbQ', 'expanded': 'https://twitter.com/telegraph/status/832268302944579584', 'display': 'twitter.com/telegraph/stat…'}, 'quoted_status': {'created_at': 'Thu Feb 16 16:40:00 +0000 2017', 'id': 832268302944579584, 'id_str': '832268302944579584', 'full_text': 'Dog abandoned at petrol station now works at petrol station\nhttps://t.co/FSKBbikc13 https://t.co/xI5pYUEU8c', 'truncated': False, 'display_text_range': [0, 83], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/FSKBbikc13', 'expanded_url': 'http://www.telegraph.co.uk/pets/news-features/dog-abandoned-petrol-station-now-works-petrol-station/', 'display_url': 'telegraph.co.uk/pets/news-feat…', 'indices': [60, 83]}], 'media': [{'id': 832266472856645634, 'id_str': '832266472856645634', 'indices': [84, 107], 'media_url': 'http://pbs.twimg.com/media/C4zN8pEWcAIJrfa.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4zN8pEWcAIJrfa.jpg', 'url': 'https://t.co/xI5pYUEU8c', 'display_url': 'pic.twitter.com/xI5pYUEU8c', 'expanded_url': 'https://twitter.com/Telegraph/status/832268302944579584/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 720, 'h': 450, 'resize': 'fit'}, 'small': {'w': 680, 'h': 425, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 450, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 832266472856645634, 'id_str': '832266472856645634', 'indices': [84, 107], 'media_url': 'http://pbs.twimg.com/media/C4zN8pEWcAIJrfa.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4zN8pEWcAIJrfa.jpg', 'url': 'https://t.co/xI5pYUEU8c', 'display_url': 'pic.twitter.com/xI5pYUEU8c', 'expanded_url': 'https://twitter.com/Telegraph/status/832268302944579584/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 720, 'h': 450, 'resize': 'fit'}, 'small': {'w': 680, 'h': 425, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 450, 'resize': 'fit'}}}]}, 'source': '<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 16343974, 'id_str': '16343974', 'name': 'The Telegraph', 'screen_name': 'Telegraph', 'location': 'London, UK', 'description': 'Think ahead with the latest news, comment, analysis and video. \n\nSubscribe here: https://t.co/xLGnIGReLy…', 'url': 'https://t.co/ALkkPczVm5', 'entities': {'url': {'urls': [{'url': 'https://t.co/ALkkPczVm5', 'expanded_url': 'http://www.telegraph.co.uk/?WT.mc_id=tw', 'display_url': 'telegraph.co.uk/?WT.mc_id=tw', 'indices': [0, 23]}]}, 'description': {'urls': [{'url': 'https://t.co/xLGnIGReLy', 'expanded_url': 'http://telegraph.co.uk/customer/subsc', 'display_url': 'telegraph.co.uk/customer/subsc', 'indices': [81, 104]}]}}, 'protected': False, 'followers_count': 3294019, 'friends_count': 898, 'listed_count': 21180, 'created_at': 'Thu Sep 18 06:50:54 +0000 2008', 'favourites_count': 386, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 503940, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '5F5653', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme15/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme15/bg.png', 'profile_background_tile': True, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1567962942578065410/uG6CI6ff_normal.png', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1567962942578065410/uG6CI6ff_normal.png', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/16343974/1662666472', 'profile_link_color': '3B94D9', 'profile_sidebar_border_color': 'FFFFFF', 'profile_sidebar_fill_color': 'F4F4F0', 'profile_text_color': '000000', 'profile_use_background_image': True, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'regular', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1724, 'favorite_count': 3265, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'retweet_count': 2658, 'favorite_count': 11102, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Feb 17 17:38:57 +0000 2017', 'id': 832645525019123713, 'id_str': '832645525019123713', 'full_text': "There's going to be a dog terminal at JFK Airport. This is not a drill. 10/10  \nhttps://t.co/dp5h9bCwU7", 'truncated': False, 'display_text_range': [0, 103], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/dp5h9bCwU7', 'expanded_url': 'http://us.blastingnews.com/news/2017/02/jfk-announces-its-first-ever-ark-oasis-animal-terminal-001480161.html?sbdht=_pM1QUzk3wsdTxcmMoRPV7FWYYlsNKcFRcYSY7OmeHnOXA4NtUM6PLQ2_', 'display_url': 'us.blastingnews.com/news/2017/02/j…', 'indices': [80, 103]}]}, 'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 483, 'favorite_count': 2726, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Feb 17 17:01:29 +0000 2017', 'id': 832636094638288896, 'id_str': '832636094638288896', 'full_text': 'This is Orion. He just got back from the dentist. Cavity free af. 12/10 would give extra pats https://t.co/Y4DZx2UWsr', 'truncated': False, 'display_text_range': [0, 93], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 832636085544955904, 'id_str': '832636085544955904', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg', 'url': 'https://t.co/Y4DZx2UWsr', 'display_url': 'pic.twitter.com/Y4DZx2UWsr', 'expanded_url': 'https://twitter.com/dog_rates/status/832636094638288896/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 832636085544955904, 'id_str': '832636085544955904', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg', 'url': 'https://t.co/Y4DZx2UWsr', 'display_url': 'pic.twitter.com/Y4DZx2UWsr', 'expanded_url': 'https://twitter.com/dog_rates/status/832636094638288896/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2552, 'favorite_count': 14851, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Feb 17 01:13:34 +0000 2017', 'id': 832397543355072512, 'id_str': '832397543355072512', 'full_text': "This is Eevee. She wants to see how you're doing. Just checkin pup on you. She hopes you're doing okay. 12/10 extremely good girl https://t.co/nqAJGCHKEt", 'truncated': False, 'display_text_range': [0, 129], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 832397519002988544, 'id_str': '832397519002988544', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg', 'url': 'https://t.co/nqAJGCHKEt', 'display_url': 'pic.twitter.com/nqAJGCHKEt', 'expanded_url': 'https://twitter.com/dog_rates/status/832397543355072512/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1153, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 832397519002988544, 'id_str': '832397519002988544', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg', 'url': 'https://t.co/nqAJGCHKEt', 'display_url': 'pic.twitter.com/nqAJGCHKEt', 'expanded_url': 'https://twitter.com/dog_rates/status/832397543355072512/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1153, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}, {'id': 832397518994604033, 'id_str': '832397518994604033', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/C41FIh-XAAE3pU4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C41FIh-XAAE3pU4.jpg', 'url': 'https://t.co/nqAJGCHKEt', 'display_url': 'pic.twitter.com/nqAJGCHKEt', 'expanded_url': 'https://twitter.com/dog_rates/status/832397543355072512/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1153, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 676, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2034, 'favorite_count': 11212, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Feb 16 23:23:38 +0000 2017', 'id': 832369877331693569, 'id_str': '832369877331693569', 'full_text': 'This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.co/Dhdx5HnQ4d', 'truncated': False, 'display_text_range': [0, 112], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 832369869089800192, 'id_str': '832369869089800192', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg', 'url': 'https://t.co/Dhdx5HnQ4d', 'display_url': 'pic.twitter.com/Dhdx5HnQ4d', 'expanded_url': 'https://twitter.com/dog_rates/status/832369877331693569/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 832369869089800192, 'id_str': '832369869089800192', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg', 'url': 'https://t.co/Dhdx5HnQ4d', 'display_url': 'pic.twitter.com/Dhdx5HnQ4d', 'expanded_url': 'https://twitter.com/dog_rates/status/832369877331693569/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2911, 'favorite_count': 16028, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Feb 16 17:00:25 +0000 2017', 'id': 832273440279240704, 'id_str': '832273440279240704', 'full_text': "Say hello to Smiley. He's a blind therapy doggo having a h*ckin blast high steppin around in the snow. 14/10 would follow anywhere https://t.co/SHAb1wHjMz", 'truncated': False, 'display_text_range': [0, 130], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 832273373149413377, 'id_str': '832273373149413377', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/832273373149413377/pu/img/qOqxM0b48fEarmq6.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/832273373149413377/pu/img/qOqxM0b48fEarmq6.jpg', 'url': 'https://t.co/SHAb1wHjMz', 'display_url': 'pic.twitter.com/SHAb1wHjMz', 'expanded_url': 'https://twitter.com/dog_rates/status/832273440279240704/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}, 'large': {'w': 1280, 'h': 720, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 832273373149413377, 'id_str': '832273373149413377', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/832273373149413377/pu/img/qOqxM0b48fEarmq6.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/832273373149413377/pu/img/qOqxM0b48fEarmq6.jpg', 'url': 'https://t.co/SHAb1wHjMz', 'display_url': 'pic.twitter.com/SHAb1wHjMz', 'expanded_url': 'https://twitter.com/dog_rates/status/832273440279240704/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}, 'small': {'w': 680, 'h': 383, 'resize': 'fit'}, 'large': {'w': 1280, 'h': 720, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [16, 9], 'duration_millis': 23282, 'variants': [{'bitrate': 2176000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/832273373149413377/pu/vid/1280x720/4VhBJ0Ca_D4yKcmA.mp4'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/832273373149413377/pu/vid/640x360/2oEmeRltWzxbnLzb.mp4'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/832273373149413377/pu/vid/320x180/MGOqTVIB0Cqm2zq5.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/832273373149413377/pu/pl/1xVC6gdDVtcQ3B_Y.m3u8'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2138, 'favorite_count': 10625, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Feb 16 13:11:49 +0000 2017', 'id': 832215909146226688, 'id_str': '832215909146226688', 'full_text': "RT @dog_rates: This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wu…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Thu Oct 13 23:23:56 +0000 2016', 'id': 786709082849828864, 'id_str': '786709082849828864', 'full_text': "This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wuqaPS", 'truncated': False, 'display_text_range': [0, 104], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 786709075132383232, 'id_str': '786709075132383232', 'indices': [105, 128], 'media_url': 'http://pbs.twimg.com/media/CurzvFTXgAA2_AP.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CurzvFTXgAA2_AP.jpg', 'url': 'https://t.co/yBO5wuqaPS', 'display_url': 'pic.twitter.com/yBO5wuqaPS', 'expanded_url': 'https://twitter.com/dog_rates/status/786709082849828864/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 786709075132383232, 'id_str': '786709075132383232', 'indices': [105, 128], 'media_url': 'http://pbs.twimg.com/media/CurzvFTXgAA2_AP.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CurzvFTXgAA2_AP.jpg', 'url': 'https://t.co/yBO5wuqaPS', 'display_url': 'pic.twitter.com/yBO5wuqaPS', 'expanded_url': 'https://twitter.com/dog_rates/status/786709082849828864/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5699, 'favorite_count': 17310, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 5699, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Thu Feb 16 13:11:05 +0000 2017', 'id': 832215726631055365, 'id_str': '832215726631055365', 'full_text': "RT @dog_rates: This is Moreton. He's the Good Boy Who Lived. 13/10 magical as h*ck https://t.co/rLHGx3VAF3", 'truncated': False, 'display_text_range': [0, 106], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 793286466235408384, 'id_str': '793286466235408384', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg', 'url': 'https://t.co/rLHGx3VAF3', 'display_url': 'pic.twitter.com/rLHGx3VAF3', 'expanded_url': 'https://twitter.com/dog_rates/status/793286476301799424/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}, 'source_status_id': 793286476301799424, 'source_status_id_str': '793286476301799424', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 793286466235408384, 'id_str': '793286466235408384', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg', 'url': 'https://t.co/rLHGx3VAF3', 'display_url': 'pic.twitter.com/rLHGx3VAF3', 'expanded_url': 'https://twitter.com/dog_rates/status/793286476301799424/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}, 'source_status_id': 793286476301799424, 'source_status_id_str': '793286476301799424', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 793286466231238656, 'id_str': '793286466231238656', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/media/CwJR1ojWgAACs6t.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CwJR1ojWgAACs6t.jpg', 'url': 'https://t.co/rLHGx3VAF3', 'display_url': 'pic.twitter.com/rLHGx3VAF3', 'expanded_url': 'https://twitter.com/dog_rates/status/793286476301799424/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 818, 'h': 1024, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 818, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 543, 'h': 680, 'resize': 'fit'}}, 'source_status_id': 793286476301799424, 'source_status_id_str': '793286476301799424', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Tue Nov 01 03:00:09 +0000 2016', 'id': 793286476301799424, 'id_str': '793286476301799424', 'full_text': "This is Moreton. He's the Good Boy Who Lived. 13/10 magical as h*ck https://t.co/rLHGx3VAF3", 'truncated': False, 'display_text_range': [0, 67], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 793286466235408384, 'id_str': '793286466235408384', 'indices': [68, 91], 'media_url': 'http://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg', 'url': 'https://t.co/rLHGx3VAF3', 'display_url': 'pic.twitter.com/rLHGx3VAF3', 'expanded_url': 'https://twitter.com/dog_rates/status/793286476301799424/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 793286466235408384, 'id_str': '793286466235408384', 'indices': [68, 91], 'media_url': 'http://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg', 'url': 'https://t.co/rLHGx3VAF3', 'display_url': 'pic.twitter.com/rLHGx3VAF3', 'expanded_url': 'https://twitter.com/dog_rates/status/793286476301799424/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}, {'id': 793286466231238656, 'id_str': '793286466231238656', 'indices': [68, 91], 'media_url': 'http://pbs.twimg.com/media/CwJR1ojWgAACs6t.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CwJR1ojWgAACs6t.jpg', 'url': 'https://t.co/rLHGx3VAF3', 'display_url': 'pic.twitter.com/rLHGx3VAF3', 'expanded_url': 'https://twitter.com/dog_rates/status/793286476301799424/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 818, 'h': 1024, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 818, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 543, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 8557, 'favorite_count': 23268, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 8557, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Feb 16 04:45:50 +0000 2017', 'id': 832088576586297345, 'id_str': '832088576586297345', 'full_text': '@docmisterio account started on 11/15/15', 'truncated': False, 'display_text_range': [13, 40], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'docmisterio', 'name': 'ZB', 'id': 30582082, 'id_str': '30582082', 'indices': [0, 12]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 832087547559997440, 'in_reply_to_status_id_str': '832087547559997440', 'in_reply_to_user_id': 30582082, 'in_reply_to_user_id_str': '30582082', 'in_reply_to_screen_name': 'docmisterio', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2, 'favorite_count': 59, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Thu Feb 16 01:34:34 +0000 2017', 'id': 832040443403784192, 'id_str': '832040443403784192', 'full_text': "RT @dog_rates: This is Klein. These pics were taken a month apart. He knows he's a stud now. 12/10 total heartthrob https://t.co/guDkLrX8zV", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 769940407350362112, 'id_str': '769940407350362112', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg', 'url': 'https://t.co/guDkLrX8zV', 'display_url': 'pic.twitter.com/guDkLrX8zV', 'expanded_url': 'https://twitter.com/dog_rates/status/769940425801170949/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 750, 'h': 937, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 937, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}}, 'source_status_id': 769940425801170949, 'source_status_id_str': '769940425801170949', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 769940407350362112, 'id_str': '769940407350362112', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg', 'url': 'https://t.co/guDkLrX8zV', 'display_url': 'pic.twitter.com/guDkLrX8zV', 'expanded_url': 'https://twitter.com/dog_rates/status/769940425801170949/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 750, 'h': 937, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 937, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}}, 'source_status_id': 769940425801170949, 'source_status_id_str': '769940425801170949', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 769940407341965313, 'id_str': '769940407341965313', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/Cq9guJ3WYAEDO5b.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Cq9guJ3WYAEDO5b.jpg', 'url': 'https://t.co/guDkLrX8zV', 'display_url': 'pic.twitter.com/guDkLrX8zV', 'expanded_url': 'https://twitter.com/dog_rates/status/769940425801170949/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 454, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 800, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1366, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 769940425801170949, 'source_status_id_str': '769940425801170949', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sun Aug 28 16:51:16 +0000 2016', 'id': 769940425801170949, 'id_str': '769940425801170949', 'full_text': "This is Klein. These pics were taken a month apart. He knows he's a stud now. 12/10 total heartthrob https://t.co/guDkLrX8zV", 'truncated': False, 'display_text_range': [0, 100], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 769940407350362112, 'id_str': '769940407350362112', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg', 'url': 'https://t.co/guDkLrX8zV', 'display_url': 'pic.twitter.com/guDkLrX8zV', 'expanded_url': 'https://twitter.com/dog_rates/status/769940425801170949/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 750, 'h': 937, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 937, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 769940407350362112, 'id_str': '769940407350362112', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg', 'url': 'https://t.co/guDkLrX8zV', 'display_url': 'pic.twitter.com/guDkLrX8zV', 'expanded_url': 'https://twitter.com/dog_rates/status/769940425801170949/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 750, 'h': 937, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 937, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}}}, {'id': 769940407341965313, 'id_str': '769940407341965313', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/Cq9guJ3WYAEDO5b.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Cq9guJ3WYAEDO5b.jpg', 'url': 'https://t.co/guDkLrX8zV', 'display_url': 'pic.twitter.com/guDkLrX8zV', 'expanded_url': 'https://twitter.com/dog_rates/status/769940425801170949/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 454, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 800, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1366, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 8792, 'favorite_count': 29173, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 8792, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Feb 16 01:04:13 +0000 2017', 'id': 832032802820481025, 'id_str': '832032802820481025', 'full_text': "This is Miguel. He was the only remaining doggo at the adoption center after the weekend. Let's change that. 12/10\n\nhttps://t.co/P0bO8mCQwN https://t.co/SU4K34NT4M", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/P0bO8mCQwN', 'expanded_url': 'https://www.petfinder.com/petdetail/34918210', 'display_url': 'petfinder.com/petdetail/3491…', 'indices': [116, 139]}], 'media': [{'id': 832032796369645570, 'id_str': '832032796369645570', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg', 'url': 'https://t.co/SU4K34NT4M', 'display_url': 'pic.twitter.com/SU4K34NT4M', 'expanded_url': 'https://twitter.com/dog_rates/status/832032802820481025/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 632, 'h': 421, 'resize': 'fit'}, 'small': {'w': 632, 'h': 421, 'resize': 'fit'}, 'large': {'w': 632, 'h': 421, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 832032796369645570, 'id_str': '832032796369645570', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg', 'url': 'https://t.co/SU4K34NT4M', 'display_url': 'pic.twitter.com/SU4K34NT4M', 'expanded_url': 'https://twitter.com/dog_rates/status/832032802820481025/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 632, 'h': 421, 'resize': 'fit'}, 'small': {'w': 632, 'h': 421, 'resize': 'fit'}, 'large': {'w': 632, 'h': 421, 'resize': 'fit'}}}, {'id': 832032796570955776, 'id_str': '832032796570955776', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C4v5a5EWMAA0_fH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4v5a5EWMAA0_fH.jpg', 'url': 'https://t.co/SU4K34NT4M', 'display_url': 'pic.twitter.com/SU4K34NT4M', 'expanded_url': 'https://twitter.com/dog_rates/status/832032802820481025/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 960, 'h': 640, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'large': {'w': 960, 'h': 640, 'resize': 'fit'}}}, {'id': 832032796453502978, 'id_str': '832032796453502978', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C4v5a4oWAAIUQbv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4v5a4oWAAIUQbv.jpg', 'url': 'https://t.co/SU4K34NT4M', 'display_url': 'pic.twitter.com/SU4K34NT4M', 'expanded_url': 'https://twitter.com/dog_rates/status/832032802820481025/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 525, 'h': 529, 'resize': 'fit'}, 'small': {'w': 525, 'h': 529, 'resize': 'fit'}, 'large': {'w': 525, 'h': 529, 'resize': 'fit'}}}, {'id': 832032796386410496, 'id_str': '832032796386410496', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C4v5a4YWQAAUjDP.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4v5a4YWQAAUjDP.jpg', 'url': 'https://t.co/SU4K34NT4M', 'display_url': 'pic.twitter.com/SU4K34NT4M', 'expanded_url': 'https://twitter.com/dog_rates/status/832032802820481025/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 854, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 854, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 567, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4289, 'favorite_count': 16722, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Feb 15 18:54:34 +0000 2017', 'id': 831939777352105988, 'id_str': '831939777352105988', 'full_text': "This is Emanuel. He's a h*ckin rare doggo. Dwells in a semi-urban environment. Round features make him extra collectible. 12/10 would so pet https://t.co/k9bzgyVdUT", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 831939770607616000, 'id_str': '831939770607616000', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg', 'url': 'https://t.co/k9bzgyVdUT', 'display_url': 'pic.twitter.com/k9bzgyVdUT', 'expanded_url': 'https://twitter.com/dog_rates/status/831939777352105988/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 564, 'h': 965, 'resize': 'fit'}, 'small': {'w': 397, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 564, 'h': 965, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 831939770607616000, 'id_str': '831939770607616000', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg', 'url': 'https://t.co/k9bzgyVdUT', 'display_url': 'pic.twitter.com/k9bzgyVdUT', 'expanded_url': 'https://twitter.com/dog_rates/status/831939777352105988/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 564, 'h': 965, 'resize': 'fit'}, 'small': {'w': 397, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 564, 'h': 965, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5639, 'favorite_count': 22414, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Feb 15 18:03:45 +0000 2017', 'id': 831926988323639298, 'id_str': '831926988323639298', 'full_text': '@UNC can confirm 12/10', 'truncated': False, 'display_text_range': [5, 22], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'UNC', 'name': 'UNC-Chapel Hill', 'id': 20683724, 'id_str': '20683724', 'indices': [0, 4]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 831903044224835585, 'in_reply_to_status_id_str': '831903044224835585', 'in_reply_to_user_id': 20683724, 'in_reply_to_user_id_str': '20683724', 'in_reply_to_screen_name': 'UNC', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 34, 'favorite_count': 319, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Wed Feb 15 17:02:36 +0000 2017', 'id': 831911600680497154, 'id_str': '831911600680497154', 'full_text': 'Meet Kuyu. He was trapped in a well for 10 days. Rescued yesterday using a device designed by a local robotics team. 14/10 for all involved https://t.co/l38R6IZNNg', 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 831911578865848320, 'id_str': '831911578865848320', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C4uLLF7VUAAy7-m.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4uLLF7VUAAy7-m.jpg', 'url': 'https://t.co/l38R6IZNNg', 'display_url': 'pic.twitter.com/l38R6IZNNg', 'expanded_url': 'https://twitter.com/dog_rates/status/831911600680497154/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 620, 'h': 310, 'resize': 'fit'}, 'large': {'w': 620, 'h': 310, 'resize': 'fit'}, 'small': {'w': 620, 'h': 310, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 831911578865848320, 'id_str': '831911578865848320', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C4uLLF7VUAAy7-m.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4uLLF7VUAAy7-m.jpg', 'url': 'https://t.co/l38R6IZNNg', 'display_url': 'pic.twitter.com/l38R6IZNNg', 'expanded_url': 'https://twitter.com/dog_rates/status/831911600680497154/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 620, 'h': 310, 'resize': 'fit'}, 'large': {'w': 620, 'h': 310, 'resize': 'fit'}, 'small': {'w': 620, 'h': 310, 'resize': 'fit'}}}, {'id': 831911578962243584, 'id_str': '831911578962243584', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C4uLLGSUMAA5dGk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4uLLGSUMAA5dGk.jpg', 'url': 'https://t.co/l38R6IZNNg', 'display_url': 'pic.twitter.com/l38R6IZNNg', 'expanded_url': 'https://twitter.com/dog_rates/status/831911600680497154/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 413, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 679, 'h': 1119, 'resize': 'fit'}, 'large': {'w': 679, 'h': 1119, 'resize': 'fit'}}}, {'id': 831911579151060992, 'id_str': '831911579151060992', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C4uLLG_VUAABSUK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4uLLG_VUAABSUK.jpg', 'url': 'https://t.co/l38R6IZNNg', 'display_url': 'pic.twitter.com/l38R6IZNNg', 'expanded_url': 'https://twitter.com/dog_rates/status/831911600680497154/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}, 'large': {'w': 1200, 'h': 900, 'resize': 'fit'}}}, {'id': 831911579079712768, 'id_str': '831911579079712768', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C4uLLGuUoAAkIHm.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4uLLGuUoAAkIHm.jpg', 'url': 'https://t.co/l38R6IZNNg', 'display_url': 'pic.twitter.com/l38R6IZNNg', 'expanded_url': 'https://twitter.com/dog_rates/status/831911600680497154/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 712, 'h': 465, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 712, 'h': 465, 'resize': 'fit'}, 'small': {'w': 680, 'h': 444, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5954, 'favorite_count': 25750, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Feb 15 01:04:21 +0000 2017', 'id': 831670449226514432, 'id_str': '831670449226514432', 'full_text': 'This is Daisy. She has a heart on her butt. 13/10 topical af https://t.co/u6p4LxzHKg', 'truncated': False, 'display_text_range': [0, 60], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 831670443132252160, 'id_str': '831670443132252160', 'indices': [61, 84], 'media_url': 'http://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg', 'url': 'https://t.co/u6p4LxzHKg', 'display_url': 'pic.twitter.com/u6p4LxzHKg', 'expanded_url': 'https://twitter.com/dog_rates/status/831670449226514432/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 899, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1535, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 831670443132252160, 'id_str': '831670443132252160', 'indices': [61, 84], 'media_url': 'http://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg', 'url': 'https://t.co/u6p4LxzHKg', 'display_url': 'pic.twitter.com/u6p4LxzHKg', 'expanded_url': 'https://twitter.com/dog_rates/status/831670449226514432/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 899, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1535, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1683, 'favorite_count': 9763, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Feb 14 23:43:18 +0000 2017', 'id': 831650051525054464, 'id_str': '831650051525054464', 'full_text': "I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t.co/piiX0ke8Z6 https://t.co/1UHrKcaCiO", 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/piiX0ke8Z6', 'expanded_url': 'http://www.gofundme.com/bluethewhitehusky', 'display_url': 'gofundme.com/bluethewhitehu…', 'indices': [115, 138]}], 'media': [{'id': 831650039864885250, 'id_str': '831650039864885250', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg', 'url': 'https://t.co/1UHrKcaCiO', 'display_url': 'pic.twitter.com/1UHrKcaCiO', 'expanded_url': 'https://twitter.com/dog_rates/status/831650051525054464/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 692, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1000, 'h': 1734, 'resize': 'fit'}, 'small': {'w': 392, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 831650039864885250, 'id_str': '831650039864885250', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg', 'url': 'https://t.co/1UHrKcaCiO', 'display_url': 'pic.twitter.com/1UHrKcaCiO', 'expanded_url': 'https://twitter.com/dog_rates/status/831650051525054464/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 692, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1000, 'h': 1734, 'resize': 'fit'}, 'small': {'w': 392, 'h': 680, 'resize': 'fit'}}}, {'id': 831650039856525314, 'id_str': '831650039856525314', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C4qdThMWcAI9jUg.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4qdThMWcAI9jUg.jpg', 'url': 'https://t.co/1UHrKcaCiO', 'display_url': 'pic.twitter.com/1UHrKcaCiO', 'expanded_url': 'https://twitter.com/dog_rates/status/831650051525054464/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 670, 'resize': 'fit'}, 'large': {'w': 1000, 'h': 985, 'resize': 'fit'}, 'medium': {'w': 1000, 'h': 985, 'resize': 'fit'}}}, {'id': 831650039869083650, 'id_str': '831650039869083650', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C4qdThPWEAIk9qP.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4qdThPWEAIk9qP.jpg', 'url': 'https://t.co/1UHrKcaCiO', 'display_url': 'pic.twitter.com/1UHrKcaCiO', 'expanded_url': 'https://twitter.com/dog_rates/status/831650051525054464/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 750, 'h': 1000, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 1000, 'resize': 'fit'}}}, {'id': 831650039864885249, 'id_str': '831650039864885249', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C4qdThOWAAEW5B9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4qdThOWAAEW5B9.jpg', 'url': 'https://t.co/1UHrKcaCiO', 'display_url': 'pic.twitter.com/1UHrKcaCiO', 'expanded_url': 'https://twitter.com/dog_rates/status/831650051525054464/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1000, 'h': 1333, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1782, 'favorite_count': 6659, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Feb 14 17:17:22 +0000 2017', 'id': 831552930092285952, 'id_str': '831552930092285952', 'full_text': "This is Dutch. He dressed up as his favorite emoji for Valentine's Day. I've got heart eyes for his heart eyes. 13/10 https://t.co/BCbmFYLrse", 'truncated': False, 'display_text_range': [0, 117], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 831552915512901632, 'id_str': '831552915512901632', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg', 'url': 'https://t.co/BCbmFYLrse', 'display_url': 'pic.twitter.com/BCbmFYLrse', 'expanded_url': 'https://twitter.com/dog_rates/status/831552930092285952/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1151, 'h': 1886, 'resize': 'fit'}, 'medium': {'w': 732, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 415, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 831552915512901632, 'id_str': '831552915512901632', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg', 'url': 'https://t.co/BCbmFYLrse', 'display_url': 'pic.twitter.com/BCbmFYLrse', 'expanded_url': 'https://twitter.com/dog_rates/status/831552930092285952/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1151, 'h': 1886, 'resize': 'fit'}, 'medium': {'w': 732, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 415, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2151, 'favorite_count': 8434, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Feb 14 02:02:51 +0000 2017', 'id': 831322785565769729, 'id_str': '831322785565769729', 'full_text': 'This is Pete. He has no eyes. Needs a guide doggo. Also appears to be considerably fluffy af. 12/10 would hug softly https://t.co/Xc0gyovCtK', 'truncated': False, 'display_text_range': [0, 116], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 831322776149430272, 'id_str': '831322776149430272', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg', 'url': 'https://t.co/Xc0gyovCtK', 'display_url': 'pic.twitter.com/Xc0gyovCtK', 'expanded_url': 'https://twitter.com/dog_rates/status/831322785565769729/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1224, 'h': 1632, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 831322776149430272, 'id_str': '831322776149430272', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg', 'url': 'https://t.co/Xc0gyovCtK', 'display_url': 'pic.twitter.com/Xc0gyovCtK', 'expanded_url': 'https://twitter.com/dog_rates/status/831322785565769729/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1224, 'h': 1632, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1436, 'favorite_count': 8730, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Feb 14 01:35:49 +0000 2017', 'id': 831315979191906304, 'id_str': '831315979191906304', 'full_text': "I couldn't make it to the #WKCDogShow BUT I have people there on the ground relaying me the finest pupper pics possible. 13/10 for all https://t.co/jd6lYhfdH4", 'truncated': False, 'display_text_range': [0, 134], 'entities': {'hashtags': [{'text': 'WKCDogShow', 'indices': [26, 37]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 831314890077908992, 'id_str': '831314890077908992', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/C4lsfO-WMAAWQQj.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4lsfO-WMAAWQQj.jpg', 'url': 'https://t.co/jd6lYhfdH4', 'display_url': 'pic.twitter.com/jd6lYhfdH4', 'expanded_url': 'https://twitter.com/dog_rates/status/831315979191906304/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 831314890077908992, 'id_str': '831314890077908992', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/C4lsfO-WMAAWQQj.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4lsfO-WMAAWQQj.jpg', 'url': 'https://t.co/jd6lYhfdH4', 'display_url': 'pic.twitter.com/jd6lYhfdH4', 'expanded_url': 'https://twitter.com/dog_rates/status/831315979191906304/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 831314984583962624, 'id_str': '831314984583962624', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/C4lskvCWIAA8T8k.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4lskvCWIAA8T8k.jpg', 'url': 'https://t.co/jd6lYhfdH4', 'display_url': 'pic.twitter.com/jd6lYhfdH4', 'expanded_url': 'https://twitter.com/dog_rates/status/831315979191906304/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1632, 'h': 1224, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}, {'id': 831315061461438465, 'id_str': '831315061461438465', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/C4lspNbXUAEPMUN.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4lspNbXUAEPMUN.jpg', 'url': 'https://t.co/jd6lYhfdH4', 'display_url': 'pic.twitter.com/jd6lYhfdH4', 'expanded_url': 'https://twitter.com/dog_rates/status/831315979191906304/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1064, 'resize': 'fit'}, 'small': {'w': 680, 'h': 603, 'resize': 'fit'}, 'large': {'w': 1380, 'h': 1224, 'resize': 'fit'}}}, {'id': 831315140649877505, 'id_str': '831315140649877505', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/C4lst0bXAAE6MP8.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4lst0bXAAE6MP8.jpg', 'url': 'https://t.co/jd6lYhfdH4', 'display_url': 'pic.twitter.com/jd6lYhfdH4', 'expanded_url': 'https://twitter.com/dog_rates/status/831315979191906304/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1035, 'favorite_count': 6158, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Feb 14 01:09:44 +0000 2017', 'id': 831309418084069378, 'id_str': '831309418084069378', 'full_text': 'This is Scooter and his son Montoya.  Scooter is a wonderful father. He takes very good care of Montoya. Both 12/10 would pet at same time https://t.co/ghqMfxxa4V', 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 831309408604868609, 'id_str': '831309408604868609', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg', 'url': 'https://t.co/ghqMfxxa4V', 'display_url': 'pic.twitter.com/ghqMfxxa4V', 'expanded_url': 'https://twitter.com/dog_rates/status/831309418084069378/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 499, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1502, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 880, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 831309408604868609, 'id_str': '831309408604868609', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg', 'url': 'https://t.co/ghqMfxxa4V', 'display_url': 'pic.twitter.com/ghqMfxxa4V', 'expanded_url': 'https://twitter.com/dog_rates/status/831309418084069378/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 499, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1502, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 880, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2256, 'favorite_count': 11054, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Feb 13 22:03:49 +0000 2017', 'id': 831262627380748289, 'id_str': '831262627380748289', 'full_text': "This is Tucker. He's feeling h*ckin festive and his owners don't have the heart to tell him Christmas is over. 12/10 https://t.co/zqR5XKMpuY", 'truncated': False, 'display_text_range': [0, 116], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 831262617675051009, 'id_str': '831262617675051009', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg', 'url': 'https://t.co/zqR5XKMpuY', 'display_url': 'pic.twitter.com/zqR5XKMpuY', 'expanded_url': 'https://twitter.com/dog_rates/status/831262627380748289/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 831262617675051009, 'id_str': '831262617675051009', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg', 'url': 'https://t.co/zqR5XKMpuY', 'display_url': 'pic.twitter.com/zqR5XKMpuY', 'expanded_url': 'https://twitter.com/dog_rates/status/831262627380748289/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1883, 'favorite_count': 11122, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Feb 13 01:46:03 +0000 2017', 'id': 830956169170665475, 'id_str': '830956169170665475', 'full_text': 'Say hello to Reggie. He hates puns. 12/10 lighten pup Reggie https://t.co/X4vNEzAod5', 'truncated': False, 'display_text_range': [0, 60], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 830956118893543424, 'id_str': '830956118893543424', 'indices': [61, 84], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/830956118893543424/pu/img/t2G0raF7pDPRMAH5.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/830956118893543424/pu/img/t2G0raF7pDPRMAH5.jpg', 'url': 'https://t.co/X4vNEzAod5', 'display_url': 'pic.twitter.com/X4vNEzAod5', 'expanded_url': 'https://twitter.com/dog_rates/status/830956169170665475/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 384, 'h': 480, 'resize': 'fit'}, 'small': {'w': 384, 'h': 480, 'resize': 'fit'}, 'large': {'w': 384, 'h': 480, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 830956118893543424, 'id_str': '830956118893543424', 'indices': [61, 84], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/830956118893543424/pu/img/t2G0raF7pDPRMAH5.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/830956118893543424/pu/img/t2G0raF7pDPRMAH5.jpg', 'url': 'https://t.co/X4vNEzAod5', 'display_url': 'pic.twitter.com/X4vNEzAod5', 'expanded_url': 'https://twitter.com/dog_rates/status/830956169170665475/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 384, 'h': 480, 'resize': 'fit'}, 'small': {'w': 384, 'h': 480, 'resize': 'fit'}, 'large': {'w': 384, 'h': 480, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [4, 5], 'duration_millis': 6455, 'variants': [{'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/830956118893543424/pu/vid/256x320/ClvYQGis06SUvIXR.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/830956118893543424/pu/pl/dT_piXUmoo_0G3mN.m3u8'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1373, 'favorite_count': 7485, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Feb 12 01:04:29 +0000 2017', 'id': 830583320585068544, 'id_str': '830583320585068544', 'full_text': 'This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5', 'truncated': False, 'display_text_range': [0, 94], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 830583314243268608, 'id_str': '830583314243268608', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg', 'url': 'https://t.co/SATN4If5H5', 'display_url': 'pic.twitter.com/SATN4If5H5', 'expanded_url': 'https://twitter.com/dog_rates/status/830583320585068544/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 830583314243268608, 'id_str': '830583314243268608', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg', 'url': 'https://t.co/SATN4If5H5', 'display_url': 'pic.twitter.com/SATN4If5H5', 'expanded_url': 'https://twitter.com/dog_rates/status/830583320585068544/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 830583314213896192, 'id_str': '830583314213896192', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/C4bTH6gWAAAV2ex.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4bTH6gWAAAV2ex.jpg', 'url': 'https://t.co/SATN4If5H5', 'display_url': 'pic.twitter.com/SATN4If5H5', 'expanded_url': 'https://twitter.com/dog_rates/status/830583320585068544/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 15354, 'favorite_count': 62202, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Feb 10 21:54:58 +0000 2017', 'id': 830173239259324417, 'id_str': '830173239259324417', 'full_text': "RT @dog_rates: This is Kyro. He's a Stratocumulus Flop. Tongue ejects at random. Serious h*ckin condition. Still 12/10 would pet passionate…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Thu Dec 15 02:14:29 +0000 2016', 'id': 809220051211603969, 'id_str': '809220051211603969', 'full_text': "This is Kyro. He's a Stratocumulus Flop. Tongue ejects at random. Serious h*ckin condition. Still 12/10 would pet passionately https://t.co/wHu15q2Q6p", 'truncated': False, 'display_text_range': [0, 126], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 809220046199328768, 'id_str': '809220046199328768', 'indices': [127, 150], 'media_url': 'http://pbs.twimg.com/media/CzrtWDbWEAAmIhy.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CzrtWDbWEAAmIhy.jpg', 'url': 'https://t.co/wHu15q2Q6p', 'display_url': 'pic.twitter.com/wHu15q2Q6p', 'expanded_url': 'https://twitter.com/dog_rates/status/809220051211603969/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 809220046199328768, 'id_str': '809220046199328768', 'indices': [127, 150], 'media_url': 'http://pbs.twimg.com/media/CzrtWDbWEAAmIhy.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CzrtWDbWEAAmIhy.jpg', 'url': 'https://t.co/wHu15q2Q6p', 'display_url': 'pic.twitter.com/wHu15q2Q6p', 'expanded_url': 'https://twitter.com/dog_rates/status/809220051211603969/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 809220046203604992, 'id_str': '809220046203604992', 'indices': [127, 150], 'media_url': 'http://pbs.twimg.com/media/CzrtWDcXUAAyn6j.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CzrtWDcXUAAyn6j.jpg', 'url': 'https://t.co/wHu15q2Q6p', 'display_url': 'pic.twitter.com/wHu15q2Q6p', 'expanded_url': 'https://twitter.com/dog_rates/status/809220051211603969/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5224, 'favorite_count': 18796, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 5224, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Fri Feb 10 16:53:37 +0000 2017', 'id': 830097400375152640, 'id_str': '830097400375152640', 'full_text': "Meet Samson. He's absolute fluffy perfection. Easily 13/10, but he needs your help. Click the link to find out more\n\nhttps://t.co/z82hCtwhpn https://t.co/KoWrMkbMbW", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/z82hCtwhpn', 'expanded_url': 'https://www.gofundme.com/sick-baby-samson', 'display_url': 'gofundme.com/sick-baby-sams…', 'indices': [117, 140]}], 'media': [{'id': 830097389742673920, 'id_str': '830097389742673920', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C4UZLYyXUAAaSyA.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4UZLYyXUAAaSyA.jpg', 'url': 'https://t.co/KoWrMkbMbW', 'display_url': 'pic.twitter.com/KoWrMkbMbW', 'expanded_url': 'https://twitter.com/dog_rates/status/830097400375152640/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 600, 'h': 450, 'resize': 'fit'}, 'medium': {'w': 600, 'h': 450, 'resize': 'fit'}, 'small': {'w': 600, 'h': 450, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 830097389742673920, 'id_str': '830097389742673920', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C4UZLYyXUAAaSyA.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4UZLYyXUAAaSyA.jpg', 'url': 'https://t.co/KoWrMkbMbW', 'display_url': 'pic.twitter.com/KoWrMkbMbW', 'expanded_url': 'https://twitter.com/dog_rates/status/830097400375152640/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 600, 'h': 450, 'resize': 'fit'}, 'medium': {'w': 600, 'h': 450, 'resize': 'fit'}, 'small': {'w': 600, 'h': 450, 'resize': 'fit'}}}, {'id': 830097389738459137, 'id_str': '830097389738459137', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C4UZLYxXAAEB05M.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4UZLYxXAAEB05M.jpg', 'url': 'https://t.co/KoWrMkbMbW', 'display_url': 'pic.twitter.com/KoWrMkbMbW', 'expanded_url': 'https://twitter.com/dog_rates/status/830097400375152640/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 600, 'h': 800, 'resize': 'fit'}, 'medium': {'w': 600, 'h': 800, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 830097389847470081, 'id_str': '830097389847470081', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C4UZLZLWYAEiqQW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4UZLZLWYAEiqQW.jpg', 'url': 'https://t.co/KoWrMkbMbW', 'display_url': 'pic.twitter.com/KoWrMkbMbW', 'expanded_url': 'https://twitter.com/dog_rates/status/830097400375152640/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 600, 'h': 800, 'resize': 'fit'}, 'medium': {'w': 600, 'h': 800, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 830097389847470080, 'id_str': '830097389847470080', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C4UZLZLWYAA0dcs.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4UZLZLWYAA0dcs.jpg', 'url': 'https://t.co/KoWrMkbMbW', 'display_url': 'pic.twitter.com/KoWrMkbMbW', 'expanded_url': 'https://twitter.com/dog_rates/status/830097400375152640/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 600, 'h': 800, 'resize': 'fit'}, 'medium': {'w': 600, 'h': 800, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2682, 'favorite_count': 9124, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Feb 10 02:25:42 +0000 2017', 'id': 829878982036299777, 'id_str': '829878982036299777', 'full_text': "RT @dog_rates: This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR", 'truncated': False, 'display_text_range': [0, 112], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 826958645422342144, 'id_str': '826958645422342144', 'indices': [89, 112], 'media_url': 'http://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg', 'url': 'https://t.co/QV5nx6otZR', 'display_url': 'pic.twitter.com/QV5nx6otZR', 'expanded_url': 'https://twitter.com/dog_rates/status/826958653328592898/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1246, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 414, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 730, 'h': 1200, 'resize': 'fit'}}, 'source_status_id': 826958653328592898, 'source_status_id_str': '826958653328592898', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 826958645422342144, 'id_str': '826958645422342144', 'indices': [89, 112], 'media_url': 'http://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg', 'url': 'https://t.co/QV5nx6otZR', 'display_url': 'pic.twitter.com/QV5nx6otZR', 'expanded_url': 'https://twitter.com/dog_rates/status/826958653328592898/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1246, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 414, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 730, 'h': 1200, 'resize': 'fit'}}, 'source_status_id': 826958653328592898, 'source_status_id_str': '826958653328592898', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Thu Feb 02 01:01:21 +0000 2017', 'id': 826958653328592898, 'id_str': '826958653328592898', 'full_text': "This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR", 'truncated': False, 'display_text_range': [0, 73], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 826958645422342144, 'id_str': '826958645422342144', 'indices': [74, 97], 'media_url': 'http://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg', 'url': 'https://t.co/QV5nx6otZR', 'display_url': 'pic.twitter.com/QV5nx6otZR', 'expanded_url': 'https://twitter.com/dog_rates/status/826958653328592898/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1246, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 414, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 730, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 826958645422342144, 'id_str': '826958645422342144', 'indices': [74, 97], 'media_url': 'http://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg', 'url': 'https://t.co/QV5nx6otZR', 'display_url': 'pic.twitter.com/QV5nx6otZR', 'expanded_url': 'https://twitter.com/dog_rates/status/826958653328592898/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1246, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 414, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 730, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4590, 'favorite_count': 20244, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 4590, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Feb 10 01:15:49 +0000 2017', 'id': 829861396166877184, 'id_str': '829861396166877184', 'full_text': "This is Mia. She already knows she's a good dog. You don't have to tell her. 12/10 would probably tell her anyway https://t.co/xeudgDXmTU", 'truncated': False, 'display_text_range': [0, 113], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 829861385404309504, 'id_str': '829861385404309504', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg', 'url': 'https://t.co/xeudgDXmTU', 'display_url': 'pic.twitter.com/xeudgDXmTU', 'expanded_url': 'https://twitter.com/dog_rates/status/829861396166877184/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 829861385404309504, 'id_str': '829861385404309504', 'indices': [114, 137], 'media_url': 'http://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg', 'url': 'https://t.co/xeudgDXmTU', 'display_url': 'pic.twitter.com/xeudgDXmTU', 'expanded_url': 'https://twitter.com/dog_rates/status/829861396166877184/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1789, 'favorite_count': 11482, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Feb 09 01:27:41 +0000 2017', 'id': 829501995190984704, 'id_str': '829501995190984704', 'full_text': "This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me Leo https://t.co/Xw9JbJHTul", 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 829501977667235840, 'id_str': '829501977667235840', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg', 'url': 'https://t.co/Xw9JbJHTul', 'display_url': 'pic.twitter.com/Xw9JbJHTul', 'expanded_url': 'https://twitter.com/dog_rates/status/829501995190984704/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 491, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1480, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 867, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 829501977667235840, 'id_str': '829501977667235840', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg', 'url': 'https://t.co/Xw9JbJHTul', 'display_url': 'pic.twitter.com/Xw9JbJHTul', 'expanded_url': 'https://twitter.com/dog_rates/status/829501995190984704/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 491, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1480, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 867, 'h': 1200, 'resize': 'fit'}}}, {'id': 829501977667178496, 'id_str': '829501977667178496', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C4L7p19WEAApXdK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4L7p19WEAApXdK.jpg', 'url': 'https://t.co/Xw9JbJHTul', 'display_url': 'pic.twitter.com/Xw9JbJHTul', 'expanded_url': 'https://twitter.com/dog_rates/status/829501995190984704/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1792, 'resize': 'fit'}, 'small': {'w': 680, 'h': 595, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1050, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9737, 'favorite_count': 29796, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Feb 08 22:00:52 +0000 2017', 'id': 829449946868879360, 'id_str': '829449946868879360', 'full_text': "Here's a stressed doggo. Had a long day. Many things on her mind. The hat communicates these feelings exquisitely. 11/10 https://t.co/fmRS43mWQB", 'truncated': False, 'display_text_range': [0, 120], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 829449933933666313, 'id_str': '829449933933666313', 'indices': [121, 144], 'media_url': 'http://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg', 'url': 'https://t.co/fmRS43mWQB', 'display_url': 'pic.twitter.com/fmRS43mWQB', 'expanded_url': 'https://twitter.com/dog_rates/status/829449946868879360/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 750, 'h': 1334, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 829449933933666313, 'id_str': '829449933933666313', 'indices': [121, 144], 'media_url': 'http://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg', 'url': 'https://t.co/fmRS43mWQB', 'display_url': 'pic.twitter.com/fmRS43mWQB', 'expanded_url': 'https://twitter.com/dog_rates/status/829449946868879360/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 750, 'h': 1334, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1854, 'favorite_count': 9840, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Feb 08 01:35:19 +0000 2017', 'id': 829141528400556032, 'id_str': '829141528400556032', 'full_text': 'This is Malcolm. He goes from sneaky tongue slip to flirt wink city in a matter of seconds. 12/10 would hug softly https://t.co/rHwfySggqR', 'truncated': False, 'display_text_range': [0, 114], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 829141507319934977, 'id_str': '829141507319934977', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/C4GzztRWMAEB6U0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4GzztRWMAEB6U0.jpg', 'url': 'https://t.co/rHwfySggqR', 'display_url': 'pic.twitter.com/rHwfySggqR', 'expanded_url': 'https://twitter.com/dog_rates/status/829141528400556032/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 575, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 575, 'h': 1024, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 829141507319934977, 'id_str': '829141507319934977', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/C4GzztRWMAEB6U0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4GzztRWMAEB6U0.jpg', 'url': 'https://t.co/rHwfySggqR', 'display_url': 'pic.twitter.com/rHwfySggqR', 'expanded_url': 'https://twitter.com/dog_rates/status/829141528400556032/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 575, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 575, 'h': 1024, 'resize': 'fit'}}}, {'id': 829141507324116992, 'id_str': '829141507324116992', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg', 'url': 'https://t.co/rHwfySggqR', 'display_url': 'pic.twitter.com/rHwfySggqR', 'expanded_url': 'https://twitter.com/dog_rates/status/829141528400556032/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 575, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 575, 'h': 1024, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6740, 'favorite_count': 22840, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Feb 07 17:00:28 +0000 2017', 'id': 829011960981237760, 'id_str': '829011960981237760', 'full_text': 'This is Dexter. He was reunited with his mom yesterday after she was stuck in Iran during the travel Bannon. 13/10 welcome home https://t.co/U50RlRw4is', 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 829011938298429440, 'id_str': '829011938298429440', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C4E99zDWAAAY_xd.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4E99zDWAAAY_xd.jpg', 'url': 'https://t.co/U50RlRw4is', 'display_url': 'pic.twitter.com/U50RlRw4is', 'expanded_url': 'https://twitter.com/dog_rates/status/829011960981237760/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 772, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 438, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1318, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 829011938298429440, 'id_str': '829011938298429440', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C4E99zDWAAAY_xd.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4E99zDWAAAY_xd.jpg', 'url': 'https://t.co/U50RlRw4is', 'display_url': 'pic.twitter.com/U50RlRw4is', 'expanded_url': 'https://twitter.com/dog_rates/status/829011960981237760/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 772, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 438, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1318, 'resize': 'fit'}}}, {'id': 829011938151657472, 'id_str': '829011938151657472', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C4E99ygWcAAQpPs.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4E99ygWcAAQpPs.jpg', 'url': 'https://t.co/U50RlRw4is', 'display_url': 'pic.twitter.com/U50RlRw4is', 'expanded_url': 'https://twitter.com/dog_rates/status/829011960981237760/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 447, 'h': 275, 'resize': 'fit'}, 'small': {'w': 447, 'h': 275, 'resize': 'fit'}, 'large': {'w': 447, 'h': 275, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 15045, 'favorite_count': 50128, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Feb 07 03:04:22 +0000 2017', 'id': 828801551087042563, 'id_str': '828801551087042563', 'full_text': 'RT @dog_rates: This is Gus. He likes to be close to you, which is good because you want to be close to Gus. 12/10 would boop then pet https…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sat Dec 17 22:43:27 +0000 2016', 'id': 810254108431155201, 'id_str': '810254108431155201', 'full_text': 'This is Gus. He likes to be close to you, which is good because you want to be close to Gus. 12/10 would boop then pet https://t.co/DrsrQkEfnb', 'truncated': False, 'display_text_range': [0, 118], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 810254102546489344, 'id_str': '810254102546489344', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/Cz6Z0DgWIAAfdvp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Cz6Z0DgWIAAfdvp.jpg', 'url': 'https://t.co/DrsrQkEfnb', 'display_url': 'pic.twitter.com/DrsrQkEfnb', 'expanded_url': 'https://twitter.com/dog_rates/status/810254108431155201/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1528, 'h': 1939, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 536, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 946, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 810254102546489344, 'id_str': '810254102546489344', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/Cz6Z0DgWIAAfdvp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Cz6Z0DgWIAAfdvp.jpg', 'url': 'https://t.co/DrsrQkEfnb', 'display_url': 'pic.twitter.com/DrsrQkEfnb', 'expanded_url': 'https://twitter.com/dog_rates/status/810254108431155201/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1528, 'h': 1939, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 536, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 946, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3150, 'favorite_count': 13918, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 3150, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Tue Feb 07 01:00:22 +0000 2017', 'id': 828770345708580865, 'id_str': '828770345708580865', 'full_text': "This is Alfie. He's your Lyft for tonight. Kindly requests you buckle pup and remain reasonably calm during the ride. 13/10 he must focus https://t.co/AqPTHYUBFz", 'truncated': False, 'display_text_range': [0, 137], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 828770330328104960, 'id_str': '828770330328104960', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C4BiOXOXAAAf6IS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4BiOXOXAAAf6IS.jpg', 'url': 'https://t.co/AqPTHYUBFz', 'display_url': 'pic.twitter.com/AqPTHYUBFz', 'expanded_url': 'https://twitter.com/dog_rates/status/828770345708580865/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 661, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 995, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 995, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 828770330328104960, 'id_str': '828770330328104960', 'indices': [138, 161], 'media_url': 'http://pbs.twimg.com/media/C4BiOXOXAAAf6IS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4BiOXOXAAAf6IS.jpg', 'url': 'https://t.co/AqPTHYUBFz', 'display_url': 'pic.twitter.com/AqPTHYUBFz', 'expanded_url': 'https://twitter.com/dog_rates/status/828770345708580865/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 661, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 995, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 995, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5378, 'favorite_count': 23999, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Feb 06 20:55:28 +0000 2017', 'id': 828708714936930305, 'id_str': '828708714936930305', 'full_text': "This is Fiona. She's an exotic dog. Seems rather impatient. Jaw extension on another level tho. Looks slippery. 10/10 would still pet https://t.co/vst2SEVJO3", 'truncated': False, 'display_text_range': [0, 133], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 828708704870555649, 'id_str': '828708704870555649', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C4AqLSgVYAEg8nt.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4AqLSgVYAEg8nt.jpg', 'url': 'https://t.co/vst2SEVJO3', 'display_url': 'pic.twitter.com/vst2SEVJO3', 'expanded_url': 'https://twitter.com/dog_rates/status/828708714936930305/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1000, 'h': 662, 'resize': 'fit'}, 'small': {'w': 680, 'h': 450, 'resize': 'fit'}, 'large': {'w': 1000, 'h': 662, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 828708704870555649, 'id_str': '828708704870555649', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C4AqLSgVYAEg8nt.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4AqLSgVYAEg8nt.jpg', 'url': 'https://t.co/vst2SEVJO3', 'display_url': 'pic.twitter.com/vst2SEVJO3', 'expanded_url': 'https://twitter.com/dog_rates/status/828708714936930305/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1000, 'h': 662, 'resize': 'fit'}, 'small': {'w': 680, 'h': 450, 'resize': 'fit'}, 'large': {'w': 1000, 'h': 662, 'resize': 'fit'}}}, {'id': 828708704870477824, 'id_str': '828708704870477824', 'indices': [134, 157], 'media_url': 'http://pbs.twimg.com/media/C4AqLSgUMAAqhTe.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C4AqLSgUMAAqhTe.jpg', 'url': 'https://t.co/vst2SEVJO3', 'display_url': 'pic.twitter.com/vst2SEVJO3', 'expanded_url': 'https://twitter.com/dog_rates/status/828708714936930305/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 766, 'h': 483, 'resize': 'fit'}, 'small': {'w': 680, 'h': 429, 'resize': 'fit'}, 'large': {'w': 766, 'h': 483, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 10279, 'favorite_count': 34129, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Feb 06 17:02:17 +0000 2017', 'id': 828650029636317184, 'id_str': '828650029636317184', 'full_text': "Occasionally, we're sent fantastic stories. This is one of them. 14/10 for Grace https://t.co/bZ4axuH6OK", 'truncated': False, 'display_text_range': [0, 80], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 828650005158301697, 'id_str': '828650005158301697', 'indices': [81, 104], 'media_url': 'http://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg', 'url': 'https://t.co/bZ4axuH6OK', 'display_url': 'pic.twitter.com/bZ4axuH6OK', 'expanded_url': 'https://twitter.com/dog_rates/status/828650029636317184/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 604, 'h': 453, 'resize': 'fit'}, 'medium': {'w': 604, 'h': 453, 'resize': 'fit'}, 'large': {'w': 604, 'h': 453, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 828650005158301697, 'id_str': '828650005158301697', 'indices': [81, 104], 'media_url': 'http://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg', 'url': 'https://t.co/bZ4axuH6OK', 'display_url': 'pic.twitter.com/bZ4axuH6OK', 'expanded_url': 'https://twitter.com/dog_rates/status/828650029636317184/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 604, 'h': 453, 'resize': 'fit'}, 'medium': {'w': 604, 'h': 453, 'resize': 'fit'}, 'large': {'w': 604, 'h': 453, 'resize': 'fit'}}}, {'id': 828650005149937664, 'id_str': '828650005149937664', 'indices': [81, 104], 'media_url': 'http://pbs.twimg.com/media/C3_0yhAWcAAhekJ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3_0yhAWcAAhekJ.jpg', 'url': 'https://t.co/bZ4axuH6OK', 'display_url': 'pic.twitter.com/bZ4axuH6OK', 'expanded_url': 'https://twitter.com/dog_rates/status/828650029636317184/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 396, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 507, 'h': 870, 'resize': 'fit'}, 'large': {'w': 507, 'h': 870, 'resize': 'fit'}}}, {'id': 828650005145714689, 'id_str': '828650005145714689', 'indices': [81, 104], 'media_url': 'http://pbs.twimg.com/media/C3_0yg_WAAEPcgX.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3_0yg_WAAEPcgX.jpg', 'url': 'https://t.co/bZ4axuH6OK', 'display_url': 'pic.twitter.com/bZ4axuH6OK', 'expanded_url': 'https://twitter.com/dog_rates/status/828650029636317184/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1232, 'favorite_count': 8923, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Feb 06 01:07:28 +0000 2017', 'id': 828409743546925057, 'id_str': '828409743546925057', 'full_text': "This is Mutt Ryan. He's quite confident at the moment. 12/10 rise pup! https://t.co/ZH5CvRlCxt", 'truncated': False, 'display_text_range': [0, 70], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 828409725217865731, 'id_str': '828409725217865731', 'indices': [71, 94], 'media_url': 'http://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg', 'url': 'https://t.co/ZH5CvRlCxt', 'display_url': 'pic.twitter.com/ZH5CvRlCxt', 'expanded_url': 'https://twitter.com/dog_rates/status/828409743546925057/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 828409725217865731, 'id_str': '828409725217865731', 'indices': [71, 94], 'media_url': 'http://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg', 'url': 'https://t.co/ZH5CvRlCxt', 'display_url': 'pic.twitter.com/ZH5CvRlCxt', 'expanded_url': 'https://twitter.com/dog_rates/status/828409743546925057/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1077, 'favorite_count': 6027, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Feb 06 01:03:14 +0000 2017', 'id': 828408677031882754, 'id_str': '828408677031882754', 'full_text': 'This is Bear. He went outside to play in the snow. Needed a break from the game. Feeling a tad better now. 12/10  deep breaths Bear https://t.co/7WFLKli2T3', 'truncated': False, 'display_text_range': [0, 131], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 828408667334647809, 'id_str': '828408667334647809', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg', 'url': 'https://t.co/7WFLKli2T3', 'display_url': 'pic.twitter.com/7WFLKli2T3', 'expanded_url': 'https://twitter.com/dog_rates/status/828408677031882754/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 521, 'h': 680, 'resize': 'fit'}, 'large': {'w': 750, 'h': 979, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 979, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 828408667334647809, 'id_str': '828408667334647809', 'indices': [132, 155], 'media_url': 'http://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg', 'url': 'https://t.co/7WFLKli2T3', 'display_url': 'pic.twitter.com/7WFLKli2T3', 'expanded_url': 'https://twitter.com/dog_rates/status/828408677031882754/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 521, 'h': 680, 'resize': 'fit'}, 'large': {'w': 750, 'h': 979, 'resize': 'fit'}, 'medium': {'w': 750, 'h': 979, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1182, 'favorite_count': 7226, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Feb 05 23:15:47 +0000 2017', 'id': 828381636999917570, 'id_str': '828381636999917570', 'full_text': "Meet Doobert. He's a deaf doggo. Didn't stop him on the field tho. Absolute legend today. 14/10 would pat head approvingly https://t.co/iCk7zstRA9", 'truncated': False, 'display_text_range': [0, 122], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 828381626287656960, 'id_str': '828381626287656960', 'indices': [123, 146], 'media_url': 'http://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg', 'url': 'https://t.co/iCk7zstRA9', 'display_url': 'pic.twitter.com/iCk7zstRA9', 'expanded_url': 'https://twitter.com/dog_rates/status/828381636999917570/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 780, 'h': 927, 'resize': 'fit'}, 'large': {'w': 780, 'h': 927, 'resize': 'fit'}, 'small': {'w': 572, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 828381626287656960, 'id_str': '828381626287656960', 'indices': [123, 146], 'media_url': 'http://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg', 'url': 'https://t.co/iCk7zstRA9', 'display_url': 'pic.twitter.com/iCk7zstRA9', 'expanded_url': 'https://twitter.com/dog_rates/status/828381636999917570/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 780, 'h': 927, 'resize': 'fit'}, 'large': {'w': 780, 'h': 927, 'resize': 'fit'}, 'small': {'w': 572, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2053, 'favorite_count': 11821, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Feb 05 22:55:23 +0000 2017', 'id': 828376505180889089, 'id_str': '828376505180889089', 'full_text': 'This is Beebop. Her name means "Good Dog" in robot. She also was a star on the field today. 13/10 would pet well https://t.co/HKBVZqXFNR', 'truncated': False, 'display_text_range': [0, 112], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 828376488684695552, 'id_str': '828376488684695552', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg', 'url': 'https://t.co/HKBVZqXFNR', 'display_url': 'pic.twitter.com/HKBVZqXFNR', 'expanded_url': 'https://twitter.com/dog_rates/status/828376505180889089/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 755, 'h': 929, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 755, 'h': 929, 'resize': 'fit'}, 'small': {'w': 553, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 828376488684695552, 'id_str': '828376488684695552', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg', 'url': 'https://t.co/HKBVZqXFNR', 'display_url': 'pic.twitter.com/HKBVZqXFNR', 'expanded_url': 'https://twitter.com/dog_rates/status/828376505180889089/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 755, 'h': 929, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 755, 'h': 929, 'resize': 'fit'}, 'small': {'w': 553, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 990, 'favorite_count': 6969, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Feb 05 22:40:03 +0000 2017', 'id': 828372645993398273, 'id_str': '828372645993398273', 'full_text': "This is Alexander Hamilpup. He was one of the many stars in this year's Puppy Bowl. He just hopes both teams had fun. 12/10 https://t.co/JcTuUcyYNS", 'truncated': False, 'display_text_range': [0, 123], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 828372634769440768, 'id_str': '828372634769440768', 'indices': [124, 147], 'media_url': 'http://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg', 'url': 'https://t.co/JcTuUcyYNS', 'display_url': 'pic.twitter.com/JcTuUcyYNS', 'expanded_url': 'https://twitter.com/dog_rates/status/828372645993398273/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 755, 'h': 887, 'resize': 'fit'}, 'small': {'w': 579, 'h': 680, 'resize': 'fit'}, 'large': {'w': 755, 'h': 887, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 828372634769440768, 'id_str': '828372634769440768', 'indices': [124, 147], 'media_url': 'http://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg', 'url': 'https://t.co/JcTuUcyYNS', 'display_url': 'pic.twitter.com/JcTuUcyYNS', 'expanded_url': 'https://twitter.com/dog_rates/status/828372645993398273/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 755, 'h': 887, 'resize': 'fit'}, 'small': {'w': 579, 'h': 680, 'resize': 'fit'}, 'large': {'w': 755, 'h': 887, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2718, 'favorite_count': 11836, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Feb 05 21:56:51 +0000 2017', 'id': 828361771580813312, 'id_str': '828361771580813312', 'full_text': 'Beebop and Doobert should start a band 12/10 would listen', 'truncated': False, 'display_text_range': [0, 57], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []}, 'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 165, 'favorite_count': 2061, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sun Feb 05 01:04:17 +0000 2017', 'id': 828046555563323392, 'id_str': '828046555563323392', 'full_text': 'This is Sailer. He waits on the roof for his owners to come home. Nobody knows how he gets up there. H*ckin loyal af. 13/10 https://t.co/O37z4jaMG9', 'truncated': False, 'display_text_range': [0, 123], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 828046540409180160, 'id_str': '828046540409180160', 'indices': [124, 147], 'media_url': 'http://pbs.twimg.com/media/C33P8PqUkAAdEck.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C33P8PqUkAAdEck.jpg', 'url': 'https://t.co/O37z4jaMG9', 'display_url': 'pic.twitter.com/O37z4jaMG9', 'expanded_url': 'https://twitter.com/dog_rates/status/828046555563323392/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 504, 'h': 143, 'resize': 'fit'}, 'thumb': {'w': 143, 'h': 143, 'resize': 'crop'}, 'large': {'w': 504, 'h': 143, 'resize': 'fit'}, 'small': {'w': 504, 'h': 143, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 828046540409180160, 'id_str': '828046540409180160', 'indices': [124, 147], 'media_url': 'http://pbs.twimg.com/media/C33P8PqUkAAdEck.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C33P8PqUkAAdEck.jpg', 'url': 'https://t.co/O37z4jaMG9', 'display_url': 'pic.twitter.com/O37z4jaMG9', 'expanded_url': 'https://twitter.com/dog_rates/status/828046555563323392/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 504, 'h': 143, 'resize': 'fit'}, 'thumb': {'w': 143, 'h': 143, 'resize': 'crop'}, 'large': {'w': 504, 'h': 143, 'resize': 'fit'}, 'small': {'w': 504, 'h': 143, 'resize': 'fit'}}}, {'id': 828046540404985856, 'id_str': '828046540404985856', 'indices': [124, 147], 'media_url': 'http://pbs.twimg.com/media/C33P8PpUkAA0lBU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C33P8PpUkAA0lBU.jpg', 'url': 'https://t.co/O37z4jaMG9', 'display_url': 'pic.twitter.com/O37z4jaMG9', 'expanded_url': 'https://twitter.com/dog_rates/status/828046555563323392/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 828046540413366275, 'id_str': '828046540413366275', 'indices': [124, 147], 'media_url': 'http://pbs.twimg.com/media/C33P8PrUcAMiQQs.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C33P8PrUcAMiQQs.jpg', 'url': 'https://t.co/O37z4jaMG9', 'display_url': 'pic.twitter.com/O37z4jaMG9', 'expanded_url': 'https://twitter.com/dog_rates/status/828046555563323392/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2645, 'favorite_count': 11021, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Feb 04 22:45:42 +0000 2017', 'id': 828011680017821696, 'id_str': '828011680017821696', 'full_text': "Say hello to Brutus and Jersey. They think they're the same size. Best furiends furever. Both 11/10 would pet simultaneously https://t.co/rkhCFfDtxB", 'truncated': False, 'display_text_range': [0, 124], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 828011664142393344, 'id_str': '828011664142393344', 'indices': [125, 148], 'media_url': 'http://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg', 'url': 'https://t.co/rkhCFfDtxB', 'display_url': 'pic.twitter.com/rkhCFfDtxB', 'expanded_url': 'https://twitter.com/dog_rates/status/828011680017821696/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 667, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 2010, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1178, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 828011664142393344, 'id_str': '828011664142393344', 'indices': [125, 148], 'media_url': 'http://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg', 'url': 'https://t.co/rkhCFfDtxB', 'display_url': 'pic.twitter.com/rkhCFfDtxB', 'expanded_url': 'https://twitter.com/dog_rates/status/828011680017821696/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 667, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 2010, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1178, 'resize': 'fit'}}}, {'id': 828011664142385154, 'id_str': '828011664142385154', 'indices': [125, 148], 'media_url': 'http://pbs.twimg.com/media/C32wOLcWQAIg5pU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C32wOLcWQAIg5pU.jpg', 'url': 'https://t.co/rkhCFfDtxB', 'display_url': 'pic.twitter.com/rkhCFfDtxB', 'expanded_url': 'https://twitter.com/dog_rates/status/828011680017821696/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 661, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1167, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1991, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1981, 'favorite_count': 9745, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Feb 04 17:34:40 +0000 2017', 'id': 827933404142436356, 'id_str': '827933404142436356', 'full_text': 'This is Kona. Yesterday she stopped by the department to see what it takes to be a police pupper. 12/10 vest was only a smidge too big https://t.co/j8D3PQJvpJ', 'truncated': False, 'display_text_range': [0, 134], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 827933393308442624, 'id_str': '827933393308442624', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/C31pCN3VYAACW00.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C31pCN3VYAACW00.jpg', 'url': 'https://t.co/j8D3PQJvpJ', 'display_url': 'pic.twitter.com/j8D3PQJvpJ', 'expanded_url': 'https://twitter.com/dog_rates/status/827933404142436356/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 543, 'h': 720, 'resize': 'fit'}, 'large': {'w': 543, 'h': 720, 'resize': 'fit'}, 'small': {'w': 513, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 827933393308442624, 'id_str': '827933393308442624', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/C31pCN3VYAACW00.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C31pCN3VYAACW00.jpg', 'url': 'https://t.co/j8D3PQJvpJ', 'display_url': 'pic.twitter.com/j8D3PQJvpJ', 'expanded_url': 'https://twitter.com/dog_rates/status/827933404142436356/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 543, 'h': 720, 'resize': 'fit'}, 'large': {'w': 543, 'h': 720, 'resize': 'fit'}, 'small': {'w': 513, 'h': 680, 'resize': 'fit'}}}, {'id': 827933393312575488, 'id_str': '827933393312575488', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/C31pCN4UcAAOLNH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C31pCN4UcAAOLNH.jpg', 'url': 'https://t.co/j8D3PQJvpJ', 'display_url': 'pic.twitter.com/j8D3PQJvpJ', 'expanded_url': 'https://twitter.com/dog_rates/status/827933404142436356/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 428, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 453, 'resize': 'fit'}, 'large': {'w': 720, 'h': 453, 'resize': 'fit'}}}, {'id': 827933393308438528, 'id_str': '827933393308438528', 'indices': [135, 158], 'media_url': 'http://pbs.twimg.com/media/C31pCN3VUAAoTvN.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C31pCN3VUAAoTvN.jpg', 'url': 'https://t.co/j8D3PQJvpJ', 'display_url': 'pic.twitter.com/j8D3PQJvpJ', 'expanded_url': 'https://twitter.com/dog_rates/status/827933404142436356/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 422, 'h': 720, 'resize': 'fit'}, 'large': {'w': 422, 'h': 720, 'resize': 'fit'}, 'small': {'w': 399, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4807, 'favorite_count': 18776, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Feb 03 23:04:02 +0000 2017', 'id': 827653905312006145, 'id_str': '827653905312006145', 'full_text': "This is Boots. She doesn't know what to do with treats so she just holds them. Very good girl. 12/10 would give more treats https://t.co/eAA8lratd3", 'truncated': False, 'display_text_range': [0, 123], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 827653897133101057, 'id_str': '827653897133101057', 'indices': [124, 147], 'media_url': 'http://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg', 'url': 'https://t.co/eAA8lratd3', 'display_url': 'pic.twitter.com/eAA8lratd3', 'expanded_url': 'https://twitter.com/dog_rates/status/827653905312006145/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 827653897133101057, 'id_str': '827653897133101057', 'indices': [124, 147], 'media_url': 'http://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg', 'url': 'https://t.co/eAA8lratd3', 'display_url': 'pic.twitter.com/eAA8lratd3', 'expanded_url': 'https://twitter.com/dog_rates/status/827653905312006145/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2787, 'favorite_count': 14543, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Feb 03 19:31:54 +0000 2017', 'id': 827600520311402496, 'id_str': '827600520311402496', 'full_text': "Meet Tucker. It's his birthday. He's pupset with you because you're too busy playing @GoodDogsGame to celebrate. 13/10 would put down phone https://t.co/vrppizPGdb", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'GoodDogsGame', 'name': 'Good Dogs', 'id': 827593379009675264, 'id_str': '827593379009675264', 'indices': [85, 98]}], 'urls': [], 'media': [{'id': 827600501818671104, 'id_str': '827600501818671104', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg', 'url': 'https://t.co/vrppizPGdb', 'display_url': 'pic.twitter.com/vrppizPGdb', 'expanded_url': 'https://twitter.com/dog_rates/status/827600520311402496/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 827600501818671104, 'id_str': '827600501818671104', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg', 'url': 'https://t.co/vrppizPGdb', 'display_url': 'pic.twitter.com/vrppizPGdb', 'expanded_url': 'https://twitter.com/dog_rates/status/827600520311402496/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 863, 'favorite_count': 7037, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Feb 03 01:16:53 +0000 2017', 'id': 827324948884643840, 'id_str': '827324948884643840', 'full_text': "This is Ralphie. He's being treated for an overactive funny bone, which is no joke. 12/10 would try to pet with a straight face https://t.co/UU3KqQF5n5", 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 827324936784117760, 'id_str': '827324936784117760', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg', 'url': 'https://t.co/UU3KqQF5n5', 'display_url': 'pic.twitter.com/UU3KqQF5n5', 'expanded_url': 'https://twitter.com/dog_rates/status/827324948884643840/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1125, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1920, 'resize': 'fit'}, 'small': {'w': 680, 'h': 638, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 827324936784117760, 'id_str': '827324936784117760', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg', 'url': 'https://t.co/UU3KqQF5n5', 'display_url': 'pic.twitter.com/UU3KqQF5n5', 'expanded_url': 'https://twitter.com/dog_rates/status/827324948884643840/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1125, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1920, 'resize': 'fit'}, 'small': {'w': 680, 'h': 638, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2796, 'favorite_count': 14898, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Feb 02 17:00:17 +0000 2017', 'id': 827199976799354881, 'id_str': '827199976799354881', 'full_text': "This is Charlie. He wins every game of chess he plays. Won't let opponent pet him until they forfeit. 13/10 you win again Charlie https://t.co/UkyQibIBzZ", 'truncated': False, 'display_text_range': [0, 129], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 827199955093843969, 'id_str': '827199955093843969', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/C3rN-fmWcAEUZFp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3rN-fmWcAEUZFp.jpg', 'url': 'https://t.co/UkyQibIBzZ', 'display_url': 'pic.twitter.com/UkyQibIBzZ', 'expanded_url': 'https://twitter.com/dog_rates/status/827199976799354881/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 827199955093843969, 'id_str': '827199955093843969', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/C3rN-fmWcAEUZFp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3rN-fmWcAEUZFp.jpg', 'url': 'https://t.co/UkyQibIBzZ', 'display_url': 'pic.twitter.com/UkyQibIBzZ', 'expanded_url': 'https://twitter.com/dog_rates/status/827199976799354881/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}}}, {'id': 827199955169341440, 'id_str': '827199955169341440', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/C3rN-f4WcAAmsuc.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3rN-f4WcAAmsuc.jpg', 'url': 'https://t.co/UkyQibIBzZ', 'display_url': 'pic.twitter.com/UkyQibIBzZ', 'expanded_url': 'https://twitter.com/dog_rates/status/827199976799354881/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}}}, {'id': 827199955488083968, 'id_str': '827199955488083968', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/C3rN-hEWEAAdOyR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3rN-hEWEAAdOyR.jpg', 'url': 'https://t.co/UkyQibIBzZ', 'display_url': 'pic.twitter.com/UkyQibIBzZ', 'expanded_url': 'https://twitter.com/dog_rates/status/827199976799354881/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}}}, {'id': 827199956662489088, 'id_str': '827199956662489088', 'indices': [130, 153], 'media_url': 'http://pbs.twimg.com/media/C3rN-lcWEAA9CmR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3rN-lcWEAA9CmR.jpg', 'url': 'https://t.co/UkyQibIBzZ', 'display_url': 'pic.twitter.com/UkyQibIBzZ', 'expanded_url': 'https://twitter.com/dog_rates/status/827199976799354881/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2052, 'favorite_count': 9966, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Feb 02 01:01:21 +0000 2017', 'id': 826958653328592898, 'id_str': '826958653328592898', 'full_text': "This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR", 'truncated': False, 'display_text_range': [0, 73], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 826958645422342144, 'id_str': '826958645422342144', 'indices': [74, 97], 'media_url': 'http://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg', 'url': 'https://t.co/QV5nx6otZR', 'display_url': 'pic.twitter.com/QV5nx6otZR', 'expanded_url': 'https://twitter.com/dog_rates/status/826958653328592898/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1246, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 414, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 730, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 826958645422342144, 'id_str': '826958645422342144', 'indices': [74, 97], 'media_url': 'http://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg', 'url': 'https://t.co/QV5nx6otZR', 'display_url': 'pic.twitter.com/QV5nx6otZR', 'expanded_url': 'https://twitter.com/dog_rates/status/826958653328592898/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1246, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 414, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 730, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4590, 'favorite_count': 20244, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Feb 01 17:44:55 +0000 2017', 'id': 826848821049180160, 'id_str': '826848821049180160', 'full_text': "This is Cupid. He was found in the trash. Now he's well on his way to prosthetic front legs and a long happy doggo life. 13/10 heroic af https://t.co/WS0Gha8vRh", 'truncated': False, 'display_text_range': [0, 136], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 826848814229237760, 'id_str': '826848814229237760', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C3mOnZ8WMAAQXRY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3mOnZ8WMAAQXRY.jpg', 'url': 'https://t.co/WS0Gha8vRh', 'display_url': 'pic.twitter.com/WS0Gha8vRh', 'expanded_url': 'https://twitter.com/dog_rates/status/826848821049180160/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 372, 'h': 279, 'resize': 'fit'}, 'large': {'w': 372, 'h': 279, 'resize': 'fit'}, 'small': {'w': 372, 'h': 279, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 826848814229237760, 'id_str': '826848814229237760', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C3mOnZ8WMAAQXRY.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3mOnZ8WMAAQXRY.jpg', 'url': 'https://t.co/WS0Gha8vRh', 'display_url': 'pic.twitter.com/WS0Gha8vRh', 'expanded_url': 'https://twitter.com/dog_rates/status/826848821049180160/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 372, 'h': 279, 'resize': 'fit'}, 'large': {'w': 372, 'h': 279, 'resize': 'fit'}, 'small': {'w': 372, 'h': 279, 'resize': 'fit'}}}, {'id': 826848814246010880, 'id_str': '826848814246010880', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C3mOnaAWIAAT_9l.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3mOnaAWIAAT_9l.jpg', 'url': 'https://t.co/WS0Gha8vRh', 'display_url': 'pic.twitter.com/WS0Gha8vRh', 'expanded_url': 'https://twitter.com/dog_rates/status/826848821049180160/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1334, 'h': 750, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}, 'small': {'w': 680, 'h': 382, 'resize': 'fit'}}}, {'id': 826848814229229568, 'id_str': '826848814229229568', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C3mOnZ8WEAAw4kL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3mOnZ8WEAAw4kL.jpg', 'url': 'https://t.co/WS0Gha8vRh', 'display_url': 'pic.twitter.com/WS0Gha8vRh', 'expanded_url': 'https://twitter.com/dog_rates/status/826848821049180160/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1334, 'h': 750, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}, 'small': {'w': 680, 'h': 382, 'resize': 'fit'}}}, {'id': 826848814241894400, 'id_str': '826848814241894400', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C3mOnZ_XUAAjr2V.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3mOnZ_XUAAjr2V.jpg', 'url': 'https://t.co/WS0Gha8vRh', 'display_url': 'pic.twitter.com/WS0Gha8vRh', 'expanded_url': 'https://twitter.com/dog_rates/status/826848821049180160/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 270, 'h': 360, 'resize': 'fit'}, 'medium': {'w': 270, 'h': 360, 'resize': 'fit'}, 'large': {'w': 270, 'h': 360, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9300, 'favorite_count': 33918, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Feb 01 02:17:19 +0000 2017', 'id': 826615380357632002, 'id_str': '826615380357632002', 'full_text': 'RT @dog_rates: Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console https:/…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sat Dec 17 00:38:52 +0000 2016', 'id': 809920764300447744, 'id_str': '809920764300447744', 'full_text': 'Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console https://t.co/HIraYS1Bzo', 'truncated': False, 'display_text_range': [0, 116], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 809920757623115780, 'id_str': '809920757623115780', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/media/Cz1qo05XUAQ4qXp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Cz1qo05XUAQ4qXp.jpg', 'url': 'https://t.co/HIraYS1Bzo', 'display_url': 'pic.twitter.com/HIraYS1Bzo', 'expanded_url': 'https://twitter.com/dog_rates/status/809920764300447744/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 491, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 867, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1149, 'h': 1590, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 809920757623115780, 'id_str': '809920757623115780', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/media/Cz1qo05XUAQ4qXp.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Cz1qo05XUAQ4qXp.jpg', 'url': 'https://t.co/HIraYS1Bzo', 'display_url': 'pic.twitter.com/HIraYS1Bzo', 'expanded_url': 'https://twitter.com/dog_rates/status/809920764300447744/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 491, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 867, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1149, 'h': 1590, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3664, 'favorite_count': 14730, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 3664, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Wed Feb 01 01:11:25 +0000 2017', 'id': 826598799820865537, 'id_str': '826598799820865537', 'full_text': "I was going to do 007/10, but the joke wasn't worth the &lt;10 rating", 'truncated': False, 'display_text_range': [0, 69], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 826598365270007810, 'in_reply_to_status_id_str': '826598365270007810', 'in_reply_to_user_id': 4196983835, 'in_reply_to_user_id_str': '4196983835', 'in_reply_to_screen_name': 'dog_rates', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 229, 'favorite_count': 4843, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Wed Feb 01 01:09:42 +0000 2017', 'id': 826598365270007810, 'id_str': '826598365270007810', 'full_text': "This is Pawnd... James Pawnd. He's suave af. 13/10 would trust with my life https://t.co/YprN62Z74I", 'truncated': False, 'display_text_range': [0, 75], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 826598343044452352, 'id_str': '826598343044452352', 'indices': [76, 99], 'media_url': 'http://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg', 'url': 'https://t.co/YprN62Z74I', 'display_url': 'pic.twitter.com/YprN62Z74I', 'expanded_url': 'https://twitter.com/dog_rates/status/826598365270007810/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 826598343044452352, 'id_str': '826598343044452352', 'indices': [76, 99], 'media_url': 'http://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg', 'url': 'https://t.co/YprN62Z74I', 'display_url': 'pic.twitter.com/YprN62Z74I', 'expanded_url': 'https://twitter.com/dog_rates/status/826598365270007810/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 826598343480578048, 'id_str': '826598343480578048', 'indices': [76, 99], 'media_url': 'http://pbs.twimg.com/media/C3iq0FsWEAA2Sia.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3iq0FsWEAA2Sia.jpg', 'url': 'https://t.co/YprN62Z74I', 'display_url': 'pic.twitter.com/YprN62Z74I', 'expanded_url': 'https://twitter.com/dog_rates/status/826598365270007810/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 826598347242889216, 'id_str': '826598347242889216', 'indices': [76, 99], 'media_url': 'http://pbs.twimg.com/media/C3iq0TtWYAA-VBh.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3iq0TtWYAA-VBh.jpg', 'url': 'https://t.co/YprN62Z74I', 'display_url': 'pic.twitter.com/YprN62Z74I', 'expanded_url': 'https://twitter.com/dog_rates/status/826598365270007810/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2172, 'favorite_count': 9414, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jan 31 17:06:32 +0000 2017', 'id': 826476773533745153, 'id_str': '826476773533745153', 'full_text': 'This is Pilot. He has mastered the synchronized head tilt and sneaky tongue slip. Usually not unlocked until later doggo days. 12/10 https://t.co/YIV8sw8xkh', 'truncated': False, 'display_text_range': [0, 132], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 826476722593865729, 'id_str': '826476722593865729', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg', 'url': 'https://t.co/YIV8sw8xkh', 'display_url': 'pic.twitter.com/YIV8sw8xkh', 'expanded_url': 'https://twitter.com/dog_rates/status/826476773533745153/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 826476722593865729, 'id_str': '826476722593865729', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg', 'url': 'https://t.co/YIV8sw8xkh', 'display_url': 'pic.twitter.com/YIV8sw8xkh', 'expanded_url': 'https://twitter.com/dog_rates/status/826476773533745153/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3879, 'favorite_count': 17305, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jan 31 01:27:39 +0000 2017', 'id': 826240494070030336, 'id_str': '826240494070030336', 'full_text': "We only rate dogs. Please don't send in any more non-dogs like this Wild Albanian Street Moose. Thank you... 11/10 https://t.co/srXL2s868C", 'truncated': False, 'display_text_range': [0, 114], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 826240471433412613, 'id_str': '826240471433412613', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg', 'url': 'https://t.co/srXL2s868C', 'display_url': 'pic.twitter.com/srXL2s868C', 'expanded_url': 'https://twitter.com/dog_rates/status/826240494070030336/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 826240471433412613, 'id_str': '826240471433412613', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg', 'url': 'https://t.co/srXL2s868C', 'display_url': 'pic.twitter.com/srXL2s868C', 'expanded_url': 'https://twitter.com/dog_rates/status/826240494070030336/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2409, 'favorite_count': 12493, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jan 30 23:05:46 +0000 2017', 'id': 826204788643753985, 'id_str': '826204788643753985', 'full_text': "Here's a little more info on Dew, your favorite roaming doggo that went h*ckin viral. 13/10 \nhttps://t.co/1httNYrCeW https://t.co/KvaM8j3jhX", 'truncated': False, 'display_text_range': [0, 116], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/1httNYrCeW', 'expanded_url': 'http://us.blastingnews.com/news/2017/01/kentucky-teen-helps-lost-yellow-labrador-and-gets-a-huge-surprise-001431969.html?sbdht=_pM1QUzk3wsenGU1giO7UnJ5NGGiKRW9AD5xs2MkaDpYY13JxbtKE4w2_', 'display_url': 'us.blastingnews.com/news/2017/01/k…', 'indices': [93, 116]}], 'media': [{'id': 826204706728968192, 'id_str': '826204706728968192', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/media/C3dEzahWAAA3QFj.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3dEzahWAAA3QFj.jpg', 'url': 'https://t.co/KvaM8j3jhX', 'display_url': 'pic.twitter.com/KvaM8j3jhX', 'expanded_url': 'https://twitter.com/dog_rates/status/826204788643753985/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 492, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1482, 'h': 2047, 'resize': 'fit'}, 'medium': {'w': 869, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 826204706728968192, 'id_str': '826204706728968192', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/media/C3dEzahWAAA3QFj.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3dEzahWAAA3QFj.jpg', 'url': 'https://t.co/KvaM8j3jhX', 'display_url': 'pic.twitter.com/KvaM8j3jhX', 'expanded_url': 'https://twitter.com/dog_rates/status/826204788643753985/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 492, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1482, 'h': 2047, 'resize': 'fit'}, 'medium': {'w': 869, 'h': 1200, 'resize': 'fit'}}}, {'id': 826204706812882944, 'id_str': '826204706812882944', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg', 'url': 'https://t.co/KvaM8j3jhX', 'display_url': 'pic.twitter.com/KvaM8j3jhX', 'expanded_url': 'https://twitter.com/dog_rates/status/826204788643753985/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 826204707295211521, 'id_str': '826204707295211521', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/media/C3dEzcoWMAEx9AU.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3dEzcoWMAEx9AU.jpg', 'url': 'https://t.co/KvaM8j3jhX', 'display_url': 'pic.twitter.com/KvaM8j3jhX', 'expanded_url': 'https://twitter.com/dog_rates/status/826204788643753985/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 826204707370762240, 'id_str': '826204707370762240', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/media/C3dEzc6XAAAehSt.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3dEzc6XAAAehSt.jpg', 'url': 'https://t.co/KvaM8j3jhX', 'display_url': 'pic.twitter.com/KvaM8j3jhX', 'expanded_url': 'https://twitter.com/dog_rates/status/826204788643753985/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 855, 'favorite_count': 4580, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jan 30 17:10:04 +0000 2017', 'id': 826115272272650244, 'id_str': '826115272272650244', 'full_text': "This is Ike. He's demonstrating the pupmost restraint. 13/10 super good boy https://t.co/6gHoGah9nm", 'truncated': False, 'display_text_range': [0, 75], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 826115125966958597, 'id_str': '826115125966958597', 'indices': [76, 99], 'media_url': 'http://pbs.twimg.com/media/C3bzVILWcAUjS5i.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3bzVILWcAUjS5i.jpg', 'url': 'https://t.co/6gHoGah9nm', 'display_url': 'pic.twitter.com/6gHoGah9nm', 'expanded_url': 'https://twitter.com/dog_rates/status/826115272272650244/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 432, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 763, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1117, 'h': 1757, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 826115125966958597, 'id_str': '826115125966958597', 'indices': [76, 99], 'media_url': 'http://pbs.twimg.com/media/C3bzVILWcAUjS5i.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3bzVILWcAUjS5i.jpg', 'url': 'https://t.co/6gHoGah9nm', 'display_url': 'pic.twitter.com/6gHoGah9nm', 'expanded_url': 'https://twitter.com/dog_rates/status/826115272272650244/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 432, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 763, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1117, 'h': 1757, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2852, 'favorite_count': 14689, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jan 30 01:21:19 +0000 2017', 'id': 825876512159186944, 'id_str': '825876512159186944', 'full_text': "This is Mo. No one will push him around in the grocery cart. He's quite pupset about it. 11/10 I volunteer https://t.co/feNwTq12S5", 'truncated': False, 'display_text_range': [0, 106], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 825876488746565634, 'id_str': '825876488746565634', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg', 'url': 'https://t.co/feNwTq12S5', 'display_url': 'pic.twitter.com/feNwTq12S5', 'expanded_url': 'https://twitter.com/dog_rates/status/825876512159186944/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 825876488746565634, 'id_str': '825876488746565634', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg', 'url': 'https://t.co/feNwTq12S5', 'display_url': 'pic.twitter.com/feNwTq12S5', 'expanded_url': 'https://twitter.com/dog_rates/status/825876512159186944/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1731, 'favorite_count': 9888, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jan 29 22:15:05 +0000 2017', 'id': 825829644528148480, 'id_str': '825829644528148480', 'full_text': 'This is Toby. He just found out you only pretend to throw the ball sometimes. H*ckin puppalled. 12/10 would console https://t.co/YimNdkZrhM', 'truncated': False, 'display_text_range': [0, 115], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 825829613733629956, 'id_str': '825829613733629956', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/C3XvqIOXUAQEP25.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3XvqIOXUAQEP25.jpg', 'url': 'https://t.co/YimNdkZrhM', 'display_url': 'pic.twitter.com/YimNdkZrhM', 'expanded_url': 'https://twitter.com/dog_rates/status/825829644528148480/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 618, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1090, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1860, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 825829613733629956, 'id_str': '825829613733629956', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/C3XvqIOXUAQEP25.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3XvqIOXUAQEP25.jpg', 'url': 'https://t.co/YimNdkZrhM', 'display_url': 'pic.twitter.com/YimNdkZrhM', 'expanded_url': 'https://twitter.com/dog_rates/status/825829644528148480/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 618, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1090, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1860, 'h': 2048, 'resize': 'fit'}}}, {'id': 825829613721047045, 'id_str': '825829613721047045', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/C3XvqILXUAU2nnT.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3XvqILXUAU2nnT.jpg', 'url': 'https://t.co/YimNdkZrhM', 'display_url': 'pic.twitter.com/YimNdkZrhM', 'expanded_url': 'https://twitter.com/dog_rates/status/825829644528148480/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1255, 'h': 1905, 'resize': 'fit'}, 'medium': {'w': 791, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 448, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2323, 'favorite_count': 11978, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jan 29 02:44:34 +0000 2017', 'id': 825535076884762624, 'id_str': '825535076884762624', 'full_text': "Here's a very loving and accepting puppo. Appears to have read her Constitution well. 14/10 would pat head approvingly https://t.co/6ao80wIpV1", 'truncated': False, 'display_text_range': [0, 118], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 825535037626056704, 'id_str': '825535037626056704', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg', 'url': 'https://t.co/6ao80wIpV1', 'display_url': 'pic.twitter.com/6ao80wIpV1', 'expanded_url': 'https://twitter.com/dog_rates/status/825535076884762624/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 825535037626056704, 'id_str': '825535037626056704', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg', 'url': 'https://t.co/6ao80wIpV1', 'display_url': 'pic.twitter.com/6ao80wIpV1', 'expanded_url': 'https://twitter.com/dog_rates/status/825535076884762624/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 16292, 'favorite_count': 53790, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jan 28 01:04:51 +0000 2017', 'id': 825147591692263424, 'id_str': '825147591692263424', 'full_text': 'This is Sweet Pea. She hides in shoe boxes and waits for someone to pick her. Then she surpuprises them. 13/10 https://t.co/AyBEmx56MD', 'truncated': False, 'display_text_range': [0, 110], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 825147581856677888, 'id_str': '825147581856677888', 'indices': [111, 134], 'media_url': 'http://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg', 'url': 'https://t.co/AyBEmx56MD', 'display_url': 'pic.twitter.com/AyBEmx56MD', 'expanded_url': 'https://twitter.com/dog_rates/status/825147591692263424/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 825147581856677888, 'id_str': '825147581856677888', 'indices': [111, 134], 'media_url': 'http://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg', 'url': 'https://t.co/AyBEmx56MD', 'display_url': 'pic.twitter.com/AyBEmx56MD', 'expanded_url': 'https://twitter.com/dog_rates/status/825147591692263424/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4165, 'favorite_count': 17195, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jan 27 23:16:13 +0000 2017', 'id': 825120256414846976, 'id_str': '825120256414846976', 'full_text': "RT @dog_rates: Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps:/…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Fri Jan 27 17:04:02 +0000 2017', 'id': 825026590719483904, 'id_str': '825026590719483904', 'full_text': "Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps://t.co/koHvVQp9bL https://t.co/IhW0JKf7kc", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/koHvVQp9bL', 'expanded_url': 'https://www.gofundme.com/my-puppys-double-cataract-surgery', 'display_url': 'gofundme.com/my-puppys-doub…', 'indices': [117, 140]}], 'media': [{'id': 825026580980314112, 'id_str': '825026580980314112', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C3MVTeGWMAAa0m7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3MVTeGWMAAa0m7.jpg', 'url': 'https://t.co/IhW0JKf7kc', 'display_url': 'pic.twitter.com/IhW0JKf7kc', 'expanded_url': 'https://twitter.com/dog_rates/status/825026590719483904/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 400, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1000, 'h': 1698, 'resize': 'fit'}, 'medium': {'w': 707, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 825026580980314112, 'id_str': '825026580980314112', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C3MVTeGWMAAa0m7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3MVTeGWMAAa0m7.jpg', 'url': 'https://t.co/IhW0JKf7kc', 'display_url': 'pic.twitter.com/IhW0JKf7kc', 'expanded_url': 'https://twitter.com/dog_rates/status/825026590719483904/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 400, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1000, 'h': 1698, 'resize': 'fit'}, 'medium': {'w': 707, 'h': 1200, 'resize': 'fit'}}}, {'id': 825026580984524800, 'id_str': '825026580984524800', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg', 'url': 'https://t.co/IhW0JKf7kc', 'display_url': 'pic.twitter.com/IhW0JKf7kc', 'expanded_url': 'https://twitter.com/dog_rates/status/825026590719483904/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 800, 'h': 533, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'large': {'w': 800, 'h': 533, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1165, 'favorite_count': 5885, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 1165, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Fri Jan 27 17:04:02 +0000 2017', 'id': 825026590719483904, 'id_str': '825026590719483904', 'full_text': "Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps://t.co/koHvVQp9bL https://t.co/IhW0JKf7kc", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/koHvVQp9bL', 'expanded_url': 'https://www.gofundme.com/my-puppys-double-cataract-surgery', 'display_url': 'gofundme.com/my-puppys-doub…', 'indices': [117, 140]}], 'media': [{'id': 825026580980314112, 'id_str': '825026580980314112', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C3MVTeGWMAAa0m7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3MVTeGWMAAa0m7.jpg', 'url': 'https://t.co/IhW0JKf7kc', 'display_url': 'pic.twitter.com/IhW0JKf7kc', 'expanded_url': 'https://twitter.com/dog_rates/status/825026590719483904/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 400, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1000, 'h': 1698, 'resize': 'fit'}, 'medium': {'w': 707, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 825026580980314112, 'id_str': '825026580980314112', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C3MVTeGWMAAa0m7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3MVTeGWMAAa0m7.jpg', 'url': 'https://t.co/IhW0JKf7kc', 'display_url': 'pic.twitter.com/IhW0JKf7kc', 'expanded_url': 'https://twitter.com/dog_rates/status/825026590719483904/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 400, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1000, 'h': 1698, 'resize': 'fit'}, 'medium': {'w': 707, 'h': 1200, 'resize': 'fit'}}}, {'id': 825026580984524800, 'id_str': '825026580984524800', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg', 'url': 'https://t.co/IhW0JKf7kc', 'display_url': 'pic.twitter.com/IhW0JKf7kc', 'expanded_url': 'https://twitter.com/dog_rates/status/825026590719483904/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 800, 'h': 533, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'large': {'w': 800, 'h': 533, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1165, 'favorite_count': 5885, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jan 27 01:49:15 +0000 2017', 'id': 824796380199809024, 'id_str': '824796380199809024', 'full_text': 'RT @dog_rates: This is Bailey. She loves going down slides but is very bad at it. Still 11/10 https://t.co/ivPWhspN3E', 'truncated': False, 'display_text_range': [0, 117], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 795076720525279233, 'id_str': '795076720525279233', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/CwiuEJgXgAElHQ7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CwiuEJgXgAElHQ7.jpg', 'url': 'https://t.co/ivPWhspN3E', 'display_url': 'pic.twitter.com/ivPWhspN3E', 'expanded_url': 'https://twitter.com/dog_rates/status/795076730285391872/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 405, 'h': 720, 'resize': 'fit'}, 'medium': {'w': 405, 'h': 720, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}}, 'source_status_id': 795076730285391872, 'source_status_id_str': '795076730285391872', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 795076720525279233, 'id_str': '795076720525279233', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/CwiuEJgXgAElHQ7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CwiuEJgXgAElHQ7.jpg', 'url': 'https://t.co/ivPWhspN3E', 'display_url': 'pic.twitter.com/ivPWhspN3E', 'expanded_url': 'https://twitter.com/dog_rates/status/795076730285391872/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 405, 'h': 720, 'resize': 'fit'}, 'medium': {'w': 405, 'h': 720, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}}, 'source_status_id': 795076730285391872, 'source_status_id_str': '795076730285391872', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 795076720550408192, 'id_str': '795076720550408192', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg', 'url': 'https://t.co/ivPWhspN3E', 'display_url': 'pic.twitter.com/ivPWhspN3E', 'expanded_url': 'https://twitter.com/dog_rates/status/795076730285391872/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 480, 'resize': 'fit'}, 'large': {'w': 720, 'h': 480, 'resize': 'fit'}}, 'source_status_id': 795076730285391872, 'source_status_id_str': '795076730285391872', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 795076720525266944, 'id_str': '795076720525266944', 'indices': [94, 117], 'media_url': 'http://pbs.twimg.com/media/CwiuEJgXUAAsyV_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CwiuEJgXUAAsyV_.jpg', 'url': 'https://t.co/ivPWhspN3E', 'display_url': 'pic.twitter.com/ivPWhspN3E', 'expanded_url': 'https://twitter.com/dog_rates/status/795076730285391872/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 651, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 689, 'h': 720, 'resize': 'fit'}, 'large': {'w': 689, 'h': 720, 'resize': 'fit'}}, 'source_status_id': 795076730285391872, 'source_status_id_str': '795076730285391872', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sun Nov 06 01:33:58 +0000 2016', 'id': 795076730285391872, 'id_str': '795076730285391872', 'full_text': 'This is Bailey. She loves going down slides but is very bad at it. Still 11/10 https://t.co/ivPWhspN3E', 'truncated': False, 'display_text_range': [0, 78], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 795076720525279233, 'id_str': '795076720525279233', 'indices': [79, 102], 'media_url': 'http://pbs.twimg.com/media/CwiuEJgXgAElHQ7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CwiuEJgXgAElHQ7.jpg', 'url': 'https://t.co/ivPWhspN3E', 'display_url': 'pic.twitter.com/ivPWhspN3E', 'expanded_url': 'https://twitter.com/dog_rates/status/795076730285391872/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 405, 'h': 720, 'resize': 'fit'}, 'medium': {'w': 405, 'h': 720, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 795076720525279233, 'id_str': '795076720525279233', 'indices': [79, 102], 'media_url': 'http://pbs.twimg.com/media/CwiuEJgXgAElHQ7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CwiuEJgXgAElHQ7.jpg', 'url': 'https://t.co/ivPWhspN3E', 'display_url': 'pic.twitter.com/ivPWhspN3E', 'expanded_url': 'https://twitter.com/dog_rates/status/795076730285391872/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 405, 'h': 720, 'resize': 'fit'}, 'medium': {'w': 405, 'h': 720, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}}}, {'id': 795076720550408192, 'id_str': '795076720550408192', 'indices': [79, 102], 'media_url': 'http://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg', 'url': 'https://t.co/ivPWhspN3E', 'display_url': 'pic.twitter.com/ivPWhspN3E', 'expanded_url': 'https://twitter.com/dog_rates/status/795076730285391872/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 480, 'resize': 'fit'}, 'large': {'w': 720, 'h': 480, 'resize': 'fit'}}}, {'id': 795076720525266944, 'id_str': '795076720525266944', 'indices': [79, 102], 'media_url': 'http://pbs.twimg.com/media/CwiuEJgXUAAsyV_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CwiuEJgXUAAsyV_.jpg', 'url': 'https://t.co/ivPWhspN3E', 'display_url': 'pic.twitter.com/ivPWhspN3E', 'expanded_url': 'https://twitter.com/dog_rates/status/795076730285391872/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 651, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 689, 'h': 720, 'resize': 'fit'}, 'large': {'w': 689, 'h': 720, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5076, 'favorite_count': 15288, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 5076, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jan 27 00:24:48 +0000 2017', 'id': 824775126675836928, 'id_str': '824775126675836928', 'full_text': 'This is Scooter. His lack of opposable thumbs is rendering his resistance to tickling embarrassingly moot. 12/10 would keep tickling https://t.co/F0VWg2GztI', 'truncated': False, 'display_text_range': [0, 132], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 824775105737809920, 'id_str': '824775105737809920', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg', 'url': 'https://t.co/F0VWg2GztI', 'display_url': 'pic.twitter.com/F0VWg2GztI', 'expanded_url': 'https://twitter.com/dog_rates/status/824775126675836928/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 824775105737809920, 'id_str': '824775105737809920', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg', 'url': 'https://t.co/F0VWg2GztI', 'display_url': 'pic.twitter.com/F0VWg2GztI', 'expanded_url': 'https://twitter.com/dog_rates/status/824775126675836928/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 824775108753494016, 'id_str': '824775108753494016', 'indices': [133, 156], 'media_url': 'http://pbs.twimg.com/media/C3Iwl3DWEAAVgOM.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3Iwl3DWEAAVgOM.jpg', 'url': 'https://t.co/F0VWg2GztI', 'display_url': 'pic.twitter.com/F0VWg2GztI', 'expanded_url': 'https://twitter.com/dog_rates/status/824775126675836928/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3258, 'favorite_count': 14005, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jan 26 17:02:56 +0000 2017', 'id': 824663926340194305, 'id_str': '824663926340194305', 'full_text': 'This is Wilson. Named after the volleyball. He tongue wrestled a bee and lost. 13/10 valiant effort tho https://t.co/A5Mx4h1FSM', 'truncated': False, 'display_text_range': [0, 103], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 824663919851687936, 'id_str': '824663919851687936', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg', 'url': 'https://t.co/A5Mx4h1FSM', 'display_url': 'pic.twitter.com/A5Mx4h1FSM', 'expanded_url': 'https://twitter.com/dog_rates/status/824663926340194305/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 661, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1167, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1991, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 824663919851687936, 'id_str': '824663919851687936', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg', 'url': 'https://t.co/A5Mx4h1FSM', 'display_url': 'pic.twitter.com/A5Mx4h1FSM', 'expanded_url': 'https://twitter.com/dog_rates/status/824663926340194305/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 661, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1167, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1991, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1633, 'favorite_count': 9909, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jan 25 18:38:36 +0000 2017', 'id': 824325613288833024, 'id_str': '824325613288833024', 'full_text': 'Retweet the h*ck out of this 13/10 pupper #BellLetsTalk https://t.co/wBmc7OaGvS', 'truncated': False, 'display_text_range': [0, 55], 'entities': {'hashtags': [{'text': 'BellLetsTalk', 'indices': [42, 55]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 824325607026737152, 'id_str': '824325607026737152', 'indices': [56, 79], 'media_url': 'http://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg', 'url': 'https://t.co/wBmc7OaGvS', 'display_url': 'pic.twitter.com/wBmc7OaGvS', 'expanded_url': 'https://twitter.com/dog_rates/status/824325613288833024/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 550, 'h': 367, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 550, 'h': 367, 'resize': 'fit'}, 'medium': {'w': 550, 'h': 367, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 824325607026737152, 'id_str': '824325607026737152', 'indices': [56, 79], 'media_url': 'http://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg', 'url': 'https://t.co/wBmc7OaGvS', 'display_url': 'pic.twitter.com/wBmc7OaGvS', 'expanded_url': 'https://twitter.com/dog_rates/status/824325613288833024/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 550, 'h': 367, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 550, 'h': 367, 'resize': 'fit'}, 'medium': {'w': 550, 'h': 367, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9850, 'favorite_count': 11134, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jan 25 16:45:05 +0000 2017', 'id': 824297048279236611, 'id_str': '824297048279236611', 'full_text': 'This is Nala. She got in trouble. One h*ck of a pupnishment. Still 11/10 would pet https://t.co/EmJbG0skLt', 'truncated': False, 'display_text_range': [0, 82], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 824297040662450181, 'id_str': '824297040662450181', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/media/C3B9yooXUAUZYds.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3B9yooXUAUZYds.jpg', 'url': 'https://t.co/EmJbG0skLt', 'display_url': 'pic.twitter.com/EmJbG0skLt', 'expanded_url': 'https://twitter.com/dog_rates/status/824297048279236611/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 642, 'h': 266, 'resize': 'fit'}, 'small': {'w': 642, 'h': 266, 'resize': 'fit'}, 'large': {'w': 642, 'h': 266, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 824297040662450181, 'id_str': '824297040662450181', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/media/C3B9yooXUAUZYds.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3B9yooXUAUZYds.jpg', 'url': 'https://t.co/EmJbG0skLt', 'display_url': 'pic.twitter.com/EmJbG0skLt', 'expanded_url': 'https://twitter.com/dog_rates/status/824297048279236611/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 642, 'h': 266, 'resize': 'fit'}, 'small': {'w': 642, 'h': 266, 'resize': 'fit'}, 'large': {'w': 642, 'h': 266, 'resize': 'fit'}}}, {'id': 824297040817557507, 'id_str': '824297040817557507', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg', 'url': 'https://t.co/EmJbG0skLt', 'display_url': 'pic.twitter.com/EmJbG0skLt', 'expanded_url': 'https://twitter.com/dog_rates/status/824297048279236611/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1639, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3553, 'favorite_count': 14170, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jan 24 22:44:42 +0000 2017', 'id': 824025158776213504, 'id_str': '824025158776213504', 'full_text': '"I wish we were dogs" 14/10 for @BadlandsNPS https://t.co/50qq2DItPW', 'truncated': False, 'display_text_range': [0, 44], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'BadlandsNPS', 'name': "Badlands Nat'l Park", 'id': 304392714, 'id_str': '304392714', 'indices': [32, 44]}], 'urls': [{'url': 'https://t.co/50qq2DItPW', 'expanded_url': 'https://twitter.com/badlandsnps/status/823966201328046080', 'display_url': 'twitter.com/badlandsnps/st…', 'indices': [45, 68]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'quoted_status_id': 823966201328046080, 'quoted_status_id_str': '823966201328046080', 'quoted_status_permalink': {'url': 'https://t.co/50qq2DItPW', 'expanded': 'https://twitter.com/badlandsnps/status/823966201328046080', 'display': 'twitter.com/badlandsnps/st…'}, 'quoted_status': {'created_at': 'Tue Jan 24 18:50:25 +0000 2017', 'id': 823966201328046080, 'id_str': '823966201328046080', 'full_text': 'CAPTION THIS! https://t.co/CA1MyF4y6Z', 'truncated': False, 'display_text_range': [0, 13], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 823966198056517633, 'id_str': '823966198056517633', 'indices': [14, 37], 'media_url': 'http://pbs.twimg.com/media/C29Q5D4WgAEAjOS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C29Q5D4WgAEAjOS.jpg', 'url': 'https://t.co/CA1MyF4y6Z', 'display_url': 'pic.twitter.com/CA1MyF4y6Z', 'expanded_url': 'https://twitter.com/BadlandsNPS/status/823966201328046080/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 800, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 823966198056517633, 'id_str': '823966198056517633', 'indices': [14, 37], 'media_url': 'http://pbs.twimg.com/media/C29Q5D4WgAEAjOS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C29Q5D4WgAEAjOS.jpg', 'url': 'https://t.co/CA1MyF4y6Z', 'display_url': 'pic.twitter.com/CA1MyF4y6Z', 'expanded_url': 'https://twitter.com/BadlandsNPS/status/823966201328046080/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 800, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]}, 'source': '<a href="http://www.hootsuite.com" rel="nofollow">Hootsuite</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 304392714, 'id_str': '304392714', 'name': "Badlands Nat'l Park", 'screen_name': 'BadlandsNPS', 'location': 'Interior, SD', 'description': 'Official feed of Badlands NP. Protecting rugged scenery, fossil beds, 244,000 acres of mixed-grass prairie & wildlife.   \nRT/follow/likes≠endorsement', 'url': 'http://t.co/qCbzlikNvf', 'entities': {'url': {'urls': [{'url': 'http://t.co/qCbzlikNvf', 'expanded_url': 'http://www.nps.gov/badl', 'display_url': 'nps.gov/badl', 'indices': [0, 22]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 187058, 'friends_count': 364, 'listed_count': 1356, 'created_at': 'Tue May 24 12:48:19 +0000 2011', 'favourites_count': 13837, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 4544, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': 'C0DEED', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/545718058644299776/bq5np8HG_normal.png', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/545718058644299776/bq5np8HG_normal.png', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/304392714/1542729015', 'profile_link_color': '0084B4', 'profile_sidebar_border_color': 'C0DEED', 'profile_sidebar_fill_color': 'DDEEF6', 'profile_text_color': '333333', 'profile_use_background_image': True, 'has_extended_profile': True, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2114, 'favorite_count': 7764, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'retweet_count': 557, 'favorite_count': 4566, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jan 24 17:04:50 +0000 2017', 'id': 823939628516474880, 'id_str': '823939628516474880', 'full_text': "This is Cash. He's officially given pup on today. 12/10 frighteningly relatable https://t.co/m0hrATIEyw", 'truncated': False, 'display_text_range': [0, 79], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 823939620815667201, 'id_str': '823939620815667201', 'indices': [80, 103], 'media_url': 'http://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg', 'url': 'https://t.co/m0hrATIEyw', 'display_url': 'pic.twitter.com/m0hrATIEyw', 'expanded_url': 'https://twitter.com/dog_rates/status/823939628516474880/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 823939620815667201, 'id_str': '823939620815667201', 'indices': [80, 103], 'media_url': 'http://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg', 'url': 'https://t.co/m0hrATIEyw', 'display_url': 'pic.twitter.com/m0hrATIEyw', 'expanded_url': 'https://twitter.com/dog_rates/status/823939628516474880/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2522, 'favorite_count': 10032, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jan 24 02:28:08 +0000 2017', 'id': 823719002937630720, 'id_str': '823719002937630720', 'full_text': "RT @dog_rates: This is Balto. He's very content. Legendary tongue slippage. 12/10 would pet forever https://t.co/T7Jr4Gw4sC", 'truncated': False, 'display_text_range': [0, 123], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [{'url': 'https://t.co/T7Jr4Gw4sC', 'expanded_url': 'https://vine.co/v/5gKxeUpuKEr', 'display_url': 'vine.co/v/5gKxeUpuKEr', 'indices': [100, 123]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Thu Oct 06 15:49:14 +0000 2016', 'id': 784057939640352768, 'id_str': '784057939640352768', 'full_text': "This is Balto. He's very content. Legendary tongue slippage. 12/10 would pet forever https://t.co/T7Jr4Gw4sC", 'truncated': False, 'display_text_range': [0, 108], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/T7Jr4Gw4sC', 'expanded_url': 'https://vine.co/v/5gKxeUpuKEr', 'display_url': 'vine.co/v/5gKxeUpuKEr', 'indices': [85, 108]}]}, 'source': '<a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 10306, 'favorite_count': 27972, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 10306, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jan 24 01:08:40 +0000 2017', 'id': 823699002998870016, 'id_str': '823699002998870016', 'full_text': 'This is Winston. The goggles make him a superhero. Protects the entire city from criminals unless they rub his belly really well. 12/10 https://t.co/yCydYURYEL', 'truncated': False, 'display_text_range': [0, 135], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 823698991951056896, 'id_str': '823698991951056896', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg', 'url': 'https://t.co/yCydYURYEL', 'display_url': 'pic.twitter.com/yCydYURYEL', 'expanded_url': 'https://twitter.com/dog_rates/status/823699002998870016/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 823698991951056896, 'id_str': '823698991951056896', 'indices': [136, 159], 'media_url': 'http://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg', 'url': 'https://t.co/yCydYURYEL', 'display_url': 'pic.twitter.com/yCydYURYEL', 'expanded_url': 'https://twitter.com/dog_rates/status/823699002998870016/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2329, 'favorite_count': 13156, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jan 23 17:20:14 +0000 2017', 'id': 823581115634085888, 'id_str': '823581115634085888', 'full_text': "This is Crawford. He's quite h*ckin good at the selfies. Nose is incredibly boopable. 11/10 would snapchat https://t.co/6F5Rrp472U", 'truncated': False, 'display_text_range': [0, 106], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 823581103512436736, 'id_str': '823581103512436736', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg', 'url': 'https://t.co/6F5Rrp472U', 'display_url': 'pic.twitter.com/6F5Rrp472U', 'expanded_url': 'https://twitter.com/dog_rates/status/823581115634085888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 823581103512436736, 'id_str': '823581103512436736', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg', 'url': 'https://t.co/6F5Rrp472U', 'display_url': 'pic.twitter.com/6F5Rrp472U', 'expanded_url': 'https://twitter.com/dog_rates/status/823581115634085888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2433, 'favorite_count': 12211, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jan 23 00:56:15 +0000 2017', 'id': 823333489516937216, 'id_str': '823333489516937216', 'full_text': '@HistoryInPics 13/10', 'truncated': False, 'display_text_range': [15, 20], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'HistoryInPics', 'name': 'History In Pictures', 'id': 1582853809, 'id_str': '1582853809', 'indices': [0, 14]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 823326389336244226, 'in_reply_to_status_id_str': '823326389336244226', 'in_reply_to_user_id': 1582853809, 'in_reply_to_user_id_str': '1582853809', 'in_reply_to_screen_name': 'HistoryInPics', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364489, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 22, 'favorite_count': 662, 'favorited': False, 'retweeted': False, 'lang': 'und'}
{'created_at': 'Mon Jan 23 00:13:17 +0000 2017', 'id': 823322678127919110, 'id_str': '823322678127919110', 'full_text': "This is Wyatt. He's got the fastest paws in the West. H*ckin deadly. 11/10 would ride into the sunset with https://t.co/stkJ377KK7", 'truncated': False, 'display_text_range': [0, 106], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 823322663322079233, 'id_str': '823322663322079233', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C20HmaLXUAEshG4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C20HmaLXUAEshG4.jpg', 'url': 'https://t.co/stkJ377KK7', 'display_url': 'pic.twitter.com/stkJ377KK7', 'expanded_url': 'https://twitter.com/dog_rates/status/823322678127919110/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 843, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 477, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1438, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 823322663322079233, 'id_str': '823322663322079233', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C20HmaLXUAEshG4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C20HmaLXUAEshG4.jpg', 'url': 'https://t.co/stkJ377KK7', 'display_url': 'pic.twitter.com/stkJ377KK7', 'expanded_url': 'https://twitter.com/dog_rates/status/823322678127919110/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 843, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 477, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1438, 'h': 2048, 'resize': 'fit'}}}, {'id': 823322663317831684, 'id_str': '823322663317831684', 'indices': [107, 130], 'media_url': 'http://pbs.twimg.com/media/C20HmaKWgAQ6-6X.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C20HmaKWgAQ6-6X.jpg', 'url': 'https://t.co/stkJ377KK7', 'display_url': 'pic.twitter.com/stkJ377KK7', 'expanded_url': 'https://twitter.com/dog_rates/status/823322678127919110/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 421, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1268, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 743, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3699, 'favorite_count': 14771, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jan 22 20:42:21 +0000 2017', 'id': 823269594223824897, 'id_str': '823269594223824897', 'full_text': "RT @dog_rates: We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5", 'truncated': False, 'display_text_range': [0, 134], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 822244810299936769, 'id_str': '822244810299936769', 'indices': [111, 134], 'media_url': 'http://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg', 'url': 'https://t.co/rLi83ZyCL5', 'display_url': 'pic.twitter.com/rLi83ZyCL5', 'expanded_url': 'https://twitter.com/dog_rates/status/822244816520155136/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 822244816520155136, 'source_status_id_str': '822244816520155136', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 822244810299936769, 'id_str': '822244810299936769', 'indices': [111, 134], 'media_url': 'http://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg', 'url': 'https://t.co/rLi83ZyCL5', 'display_url': 'pic.twitter.com/rLi83ZyCL5', 'expanded_url': 'https://twitter.com/dog_rates/status/822244816520155136/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 822244816520155136, 'source_status_id_str': '822244816520155136', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Fri Jan 20 00:50:15 +0000 2017', 'id': 822244816520155136, 'id_str': '822244816520155136', 'full_text': "We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5", 'truncated': False, 'display_text_range': [0, 95], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 822244810299936769, 'id_str': '822244810299936769', 'indices': [96, 119], 'media_url': 'http://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg', 'url': 'https://t.co/rLi83ZyCL5', 'display_url': 'pic.twitter.com/rLi83ZyCL5', 'expanded_url': 'https://twitter.com/dog_rates/status/822244816520155136/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 822244810299936769, 'id_str': '822244810299936769', 'indices': [96, 119], 'media_url': 'http://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg', 'url': 'https://t.co/rLi83ZyCL5', 'display_url': 'pic.twitter.com/rLi83ZyCL5', 'expanded_url': 'https://twitter.com/dog_rates/status/822244816520155136/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9178, 'favorite_count': 32992, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 9178, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jan 22 01:12:59 +0000 2017', 'id': 822975315408461824, 'id_str': '822975315408461824', 'full_text': "This is Albus. He's soaked as h*ck. Seems to have misplaced an ear as well. Still in good spirits tho. 12/10 would dry https://t.co/yUM8jYStuG", 'truncated': False, 'display_text_range': [0, 118], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 822975307724496896, 'id_str': '822975307724496896', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C2vLrpvWIAA3LM3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2vLrpvWIAA3LM3.jpg', 'url': 'https://t.co/yUM8jYStuG', 'display_url': 'pic.twitter.com/yUM8jYStuG', 'expanded_url': 'https://twitter.com/dog_rates/status/822975315408461824/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 822975307724496896, 'id_str': '822975307724496896', 'indices': [119, 142], 'media_url': 'http://pbs.twimg.com/media/C2vLrpvWIAA3LM3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2vLrpvWIAA3LM3.jpg', 'url': 'https://t.co/yUM8jYStuG', 'display_url': 'pic.twitter.com/yUM8jYStuG', 'expanded_url': 'https://twitter.com/dog_rates/status/822975315408461824/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3186, 'favorite_count': 16313, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jan 21 18:26:02 +0000 2017', 'id': 822872901745569793, 'id_str': '822872901745569793', 'full_text': "Here's a super supportive puppo participating in the Toronto  #WomensMarch today. 13/10 https://t.co/nTz3FtorBc", 'truncated': False, 'display_text_range': [0, 87], 'entities': {'hashtags': [{'text': 'WomensMarch', 'indices': [62, 74]}], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 822872859181809664, 'id_str': '822872859181809664', 'indices': [88, 111], 'media_url': 'http://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg', 'url': 'https://t.co/nTz3FtorBc', 'display_url': 'pic.twitter.com/nTz3FtorBc', 'expanded_url': 'https://twitter.com/dog_rates/status/822872901745569793/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 822872859181809664, 'id_str': '822872859181809664', 'indices': [88, 111], 'media_url': 'http://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg', 'url': 'https://t.co/nTz3FtorBc', 'display_url': 'pic.twitter.com/nTz3FtorBc', 'expanded_url': 'https://twitter.com/dog_rates/status/822872901745569793/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 39721, 'favorite_count': 123605, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jan 21 17:31:20 +0000 2017', 'id': 822859134160621569, 'id_str': '822859134160621569', 'full_text': 'This is Hobbes. He was told he was going to the park. Ended up at the vet. H*ckin bamboozled. Quite pupset with you. 12/10 https://t.co/SSQE06XClS', 'truncated': False, 'display_text_range': [0, 122], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 822859122781683714, 'id_str': '822859122781683714', 'indices': [123, 146], 'media_url': 'http://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg', 'url': 'https://t.co/SSQE06XClS', 'display_url': 'pic.twitter.com/SSQE06XClS', 'expanded_url': 'https://twitter.com/dog_rates/status/822859134160621569/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 822859122781683714, 'id_str': '822859122781683714', 'indices': [123, 146], 'media_url': 'http://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg', 'url': 'https://t.co/SSQE06XClS', 'display_url': 'pic.twitter.com/SSQE06XClS', 'expanded_url': 'https://twitter.com/dog_rates/status/822859134160621569/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2103, 'favorite_count': 12405, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jan 21 03:29:14 +0000 2017', 'id': 822647212903690241, 'id_str': '822647212903690241', 'full_text': 'RT @dog_rates: This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E', 'truncated': False, 'display_text_range': [0, 133], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 822489041455157248, 'id_str': '822489041455157248', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg', 'url': 'https://t.co/liJGwMp17E', 'display_url': 'pic.twitter.com/liJGwMp17E', 'expanded_url': 'https://twitter.com/dog_rates/status/822489057087389700/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 822489057087389700, 'source_status_id_str': '822489057087389700', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 822489041455157248, 'id_str': '822489041455157248', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg', 'url': 'https://t.co/liJGwMp17E', 'display_url': 'pic.twitter.com/liJGwMp17E', 'expanded_url': 'https://twitter.com/dog_rates/status/822489057087389700/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 822489057087389700, 'source_status_id_str': '822489057087389700', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 822489041467752450, 'id_str': '822489041467752450', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C2oRbOxWQAIpnBA.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2oRbOxWQAIpnBA.jpg', 'url': 'https://t.co/liJGwMp17E', 'display_url': 'pic.twitter.com/liJGwMp17E', 'expanded_url': 'https://twitter.com/dog_rates/status/822489057087389700/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}, 'source_status_id': 822489057087389700, 'source_status_id_str': '822489057087389700', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 822489041463549952, 'id_str': '822489041463549952', 'indices': [110, 133], 'media_url': 'http://pbs.twimg.com/media/C2oRbOwWIAANYrq.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2oRbOwWIAANYrq.jpg', 'url': 'https://t.co/liJGwMp17E', 'display_url': 'pic.twitter.com/liJGwMp17E', 'expanded_url': 'https://twitter.com/dog_rates/status/822489057087389700/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}, 'source_status_id': 822489057087389700, 'source_status_id_str': '822489057087389700', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Fri Jan 20 17:00:46 +0000 2017', 'id': 822489057087389700, 'id_str': '822489057087389700', 'full_text': 'This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E', 'truncated': False, 'display_text_range': [0, 94], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 822489041455157248, 'id_str': '822489041455157248', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg', 'url': 'https://t.co/liJGwMp17E', 'display_url': 'pic.twitter.com/liJGwMp17E', 'expanded_url': 'https://twitter.com/dog_rates/status/822489057087389700/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 822489041455157248, 'id_str': '822489041455157248', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg', 'url': 'https://t.co/liJGwMp17E', 'display_url': 'pic.twitter.com/liJGwMp17E', 'expanded_url': 'https://twitter.com/dog_rates/status/822489057087389700/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 822489041467752450, 'id_str': '822489041467752450', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/C2oRbOxWQAIpnBA.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2oRbOxWQAIpnBA.jpg', 'url': 'https://t.co/liJGwMp17E', 'display_url': 'pic.twitter.com/liJGwMp17E', 'expanded_url': 'https://twitter.com/dog_rates/status/822489057087389700/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}, {'id': 822489041463549952, 'id_str': '822489041463549952', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/C2oRbOwWIAANYrq.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2oRbOwWIAANYrq.jpg', 'url': 'https://t.co/liJGwMp17E', 'display_url': 'pic.twitter.com/liJGwMp17E', 'expanded_url': 'https://twitter.com/dog_rates/status/822489057087389700/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5931, 'favorite_count': 17048, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 5931, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jan 21 01:02:48 +0000 2017', 'id': 822610361945911296, 'id_str': '822610361945911296', 'full_text': 'Please stop sending in non-canines like this Very Pettable Dozing Bath Tortoise. We only rate dogs. Only send dogs... 12/10 https://t.co/mcagPeENIh', 'truncated': False, 'display_text_range': [0, 123], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 822610349065179137, 'id_str': '822610349065179137', 'indices': [124, 147], 'media_url': 'http://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg', 'url': 'https://t.co/mcagPeENIh', 'display_url': 'pic.twitter.com/mcagPeENIh', 'expanded_url': 'https://twitter.com/dog_rates/status/822610361945911296/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 822610349065179137, 'id_str': '822610349065179137', 'indices': [124, 147], 'media_url': 'http://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg', 'url': 'https://t.co/mcagPeENIh', 'display_url': 'pic.twitter.com/mcagPeENIh', 'expanded_url': 'https://twitter.com/dog_rates/status/822610361945911296/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2719, 'favorite_count': 13914, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jan 20 17:00:46 +0000 2017', 'id': 822489057087389700, 'id_str': '822489057087389700', 'full_text': 'This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E', 'truncated': False, 'display_text_range': [0, 94], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 822489041455157248, 'id_str': '822489041455157248', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg', 'url': 'https://t.co/liJGwMp17E', 'display_url': 'pic.twitter.com/liJGwMp17E', 'expanded_url': 'https://twitter.com/dog_rates/status/822489057087389700/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 822489041455157248, 'id_str': '822489041455157248', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg', 'url': 'https://t.co/liJGwMp17E', 'display_url': 'pic.twitter.com/liJGwMp17E', 'expanded_url': 'https://twitter.com/dog_rates/status/822489057087389700/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 822489041467752450, 'id_str': '822489041467752450', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/C2oRbOxWQAIpnBA.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2oRbOxWQAIpnBA.jpg', 'url': 'https://t.co/liJGwMp17E', 'display_url': 'pic.twitter.com/liJGwMp17E', 'expanded_url': 'https://twitter.com/dog_rates/status/822489057087389700/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}, {'id': 822489041463549952, 'id_str': '822489041463549952', 'indices': [95, 118], 'media_url': 'http://pbs.twimg.com/media/C2oRbOwWIAANYrq.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2oRbOwWIAANYrq.jpg', 'url': 'https://t.co/liJGwMp17E', 'display_url': 'pic.twitter.com/liJGwMp17E', 'expanded_url': 'https://twitter.com/dog_rates/status/822489057087389700/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5931, 'favorite_count': 17048, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jan 20 15:17:01 +0000 2017', 'id': 822462944365645825, 'id_str': '822462944365645825', 'full_text': 'This is Gabe. He was the unequivocal embodiment of a dream meme, but also one h*ck of a pupper. You will be missed by so many. 14/10 RIP https://t.co/M3hZGadUuO', 'truncated': False, 'display_text_range': [0, 136], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 822462929555652610, 'id_str': '822462929555652610', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C2n5rUUXgAIaNvz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2n5rUUXgAIaNvz.jpg', 'url': 'https://t.co/M3hZGadUuO', 'display_url': 'pic.twitter.com/M3hZGadUuO', 'expanded_url': 'https://twitter.com/dog_rates/status/822462944365645825/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1024, 'h': 722, 'resize': 'fit'}, 'small': {'w': 680, 'h': 479, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 722, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 822462929555652610, 'id_str': '822462929555652610', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C2n5rUUXgAIaNvz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2n5rUUXgAIaNvz.jpg', 'url': 'https://t.co/M3hZGadUuO', 'display_url': 'pic.twitter.com/M3hZGadUuO', 'expanded_url': 'https://twitter.com/dog_rates/status/822462944365645825/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1024, 'h': 722, 'resize': 'fit'}, 'small': {'w': 680, 'h': 479, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 722, 'resize': 'fit'}}}, {'id': 822462929559810048, 'id_str': '822462929559810048', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C2n5rUVW8AAihia.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2n5rUVW8AAihia.jpg', 'url': 'https://t.co/M3hZGadUuO', 'display_url': 'pic.twitter.com/M3hZGadUuO', 'expanded_url': 'https://twitter.com/dog_rates/status/822462944365645825/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 655, 'h': 711, 'resize': 'fit'}, 'large': {'w': 655, 'h': 711, 'resize': 'fit'}, 'small': {'w': 626, 'h': 680, 'resize': 'fit'}}}, {'id': 822462929555623938, 'id_str': '822462929555623938', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C2n5rUUXEAIXAtv.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2n5rUUXEAIXAtv.jpg', 'url': 'https://t.co/M3hZGadUuO', 'display_url': 'pic.twitter.com/M3hZGadUuO', 'expanded_url': 'https://twitter.com/dog_rates/status/822462944365645825/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 800, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}}}, {'id': 822462929605947396, 'id_str': '822462929605947396', 'indices': [137, 160], 'media_url': 'http://pbs.twimg.com/media/C2n5rUgW8AQC9mq.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2n5rUgW8AQC9mq.jpg', 'url': 'https://t.co/M3hZGadUuO', 'display_url': 'pic.twitter.com/M3hZGadUuO', 'expanded_url': 'https://twitter.com/dog_rates/status/822462944365645825/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 393, 'h': 680, 'resize': 'fit'}, 'large': {'w': 749, 'h': 1295, 'resize': 'fit'}, 'medium': {'w': 694, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 13073, 'favorite_count': 26193, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jan 20 00:50:15 +0000 2017', 'id': 822244816520155136, 'id_str': '822244816520155136', 'full_text': "We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5", 'truncated': False, 'display_text_range': [0, 95], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 822244810299936769, 'id_str': '822244810299936769', 'indices': [96, 119], 'media_url': 'http://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg', 'url': 'https://t.co/rLi83ZyCL5', 'display_url': 'pic.twitter.com/rLi83ZyCL5', 'expanded_url': 'https://twitter.com/dog_rates/status/822244816520155136/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 822244810299936769, 'id_str': '822244810299936769', 'indices': [96, 119], 'media_url': 'http://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg', 'url': 'https://t.co/rLi83ZyCL5', 'display_url': 'pic.twitter.com/rLi83ZyCL5', 'expanded_url': 'https://twitter.com/dog_rates/status/822244816520155136/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9178, 'favorite_count': 32992, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jan 19 19:25:24 +0000 2017', 'id': 822163064745328640, 'id_str': '822163064745328640', 'full_text': "RT @dog_rates: This is Mattie. She's extremely dangerous. Will bite your h*ckin finger right off. Still 11/10 would pet with caution https:…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Wed Oct 12 15:55:59 +0000 2016', 'id': 786233965241827333, 'id_str': '786233965241827333', 'full_text': "This is Mattie. She's extremely dangerous. Will bite your h*ckin finger right off. Still 11/10 would pet with caution https://t.co/78c9W8kLFh", 'truncated': False, 'display_text_range': [0, 117], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 786233954131144704, 'id_str': '786233954131144704', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/CulDnZpWcAAGbZ-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CulDnZpWcAAGbZ-.jpg', 'url': 'https://t.co/78c9W8kLFh', 'display_url': 'pic.twitter.com/78c9W8kLFh', 'expanded_url': 'https://twitter.com/dog_rates/status/786233965241827333/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 786233954131144704, 'id_str': '786233954131144704', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/CulDnZpWcAAGbZ-.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CulDnZpWcAAGbZ-.jpg', 'url': 'https://t.co/78c9W8kLFh', 'display_url': 'pic.twitter.com/78c9W8kLFh', 'expanded_url': 'https://twitter.com/dog_rates/status/786233965241827333/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4349, 'favorite_count': 14356, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 4349, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Thu Jan 19 01:04:45 +0000 2017', 'id': 821886076407029760, 'id_str': '821886076407029760', 'full_text': 'This is Jimison. He was just called a good boy. 13/10 https://t.co/djMep7mGkV', 'truncated': False, 'display_text_range': [0, 53], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 821886054592552961, 'id_str': '821886054592552961', 'indices': [54, 77], 'media_url': 'http://pbs.twimg.com/media/C2ftAxnWIAEUdAR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2ftAxnWIAEUdAR.jpg', 'url': 'https://t.co/djMep7mGkV', 'display_url': 'pic.twitter.com/djMep7mGkV', 'expanded_url': 'https://twitter.com/dog_rates/status/821886076407029760/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 895, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1528, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 507, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 821886054592552961, 'id_str': '821886054592552961', 'indices': [54, 77], 'media_url': 'http://pbs.twimg.com/media/C2ftAxnWIAEUdAR.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2ftAxnWIAEUdAR.jpg', 'url': 'https://t.co/djMep7mGkV', 'display_url': 'pic.twitter.com/djMep7mGkV', 'expanded_url': 'https://twitter.com/dog_rates/status/821886076407029760/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 895, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1528, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 507, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2130, 'favorite_count': 10632, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jan 18 20:16:54 +0000 2017', 'id': 821813639212650496, 'id_str': '821813639212650496', 'full_text': 'RT @dog_rates: Meet Hercules. He can have whatever he wants for the rest of eternity. 12/10 would snug passionately https://t.co/mH0IOyFdIG', 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 780601293052190720, 'id_str': '780601293052190720', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg', 'url': 'https://t.co/mH0IOyFdIG', 'display_url': 'pic.twitter.com/mH0IOyFdIG', 'expanded_url': 'https://twitter.com/dog_rates/status/780601303617732608/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}, 'source_status_id': 780601303617732608, 'source_status_id_str': '780601303617732608', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 780601293052190720, 'id_str': '780601293052190720', 'indices': [116, 139], 'media_url': 'http://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg', 'url': 'https://t.co/mH0IOyFdIG', 'display_url': 'pic.twitter.com/mH0IOyFdIG', 'expanded_url': 'https://twitter.com/dog_rates/status/780601303617732608/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}, 'source_status_id': 780601303617732608, 'source_status_id_str': '780601303617732608', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Tue Sep 27 02:53:48 +0000 2016', 'id': 780601303617732608, 'id_str': '780601303617732608', 'full_text': 'Meet Hercules. He can have whatever he wants for the rest of eternity. 12/10 would snug passionately https://t.co/mH0IOyFdIG', 'truncated': False, 'display_text_range': [0, 100], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 780601293052190720, 'id_str': '780601293052190720', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg', 'url': 'https://t.co/mH0IOyFdIG', 'display_url': 'pic.twitter.com/mH0IOyFdIG', 'expanded_url': 'https://twitter.com/dog_rates/status/780601303617732608/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 780601293052190720, 'id_str': '780601293052190720', 'indices': [101, 124], 'media_url': 'http://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg', 'url': 'https://t.co/mH0IOyFdIG', 'display_url': 'pic.twitter.com/mH0IOyFdIG', 'expanded_url': 'https://twitter.com/dog_rates/status/780601303617732608/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3110, 'favorite_count': 11385, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 3110, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jan 18 17:07:18 +0000 2017', 'id': 821765923262631936, 'id_str': '821765923262631936', 'full_text': 'This is Duchess. She uses dark doggo forces to levitate her toys. 13/10 magical af https://t.co/maDNMETA52', 'truncated': False, 'display_text_range': [0, 82], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 821765912948772865, 'id_str': '821765912948772865', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/media/C2d_vnHWEAE9phX.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2d_vnHWEAE9phX.jpg', 'url': 'https://t.co/maDNMETA52', 'display_url': 'pic.twitter.com/maDNMETA52', 'expanded_url': 'https://twitter.com/dog_rates/status/821765923262631936/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1152, 'h': 1442, 'resize': 'fit'}, 'small': {'w': 543, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 959, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 821765912948772865, 'id_str': '821765912948772865', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/media/C2d_vnHWEAE9phX.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2d_vnHWEAE9phX.jpg', 'url': 'https://t.co/maDNMETA52', 'display_url': 'pic.twitter.com/maDNMETA52', 'expanded_url': 'https://twitter.com/dog_rates/status/821765923262631936/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1152, 'h': 1442, 'resize': 'fit'}, 'small': {'w': 543, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 959, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1553, 'favorite_count': 7886, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jan 18 01:01:34 +0000 2017', 'id': 821522889702862852, 'id_str': '821522889702862852', 'full_text': "This is Harlso. He has a really good idea but isn't sure you're going to like it. 13/10 he'll just keep it to himself https://t.co/IzcaR3Nqyn", 'truncated': False, 'display_text_range': [0, 117], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 821522878252384256, 'id_str': '821522878252384256', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/C2aitIUXAAAG-Wi.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2aitIUXAAAG-Wi.jpg', 'url': 'https://t.co/IzcaR3Nqyn', 'display_url': 'pic.twitter.com/IzcaR3Nqyn', 'expanded_url': 'https://twitter.com/dog_rates/status/821522889702862852/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 969, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1653, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 549, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 821522878252384256, 'id_str': '821522878252384256', 'indices': [118, 141], 'media_url': 'http://pbs.twimg.com/media/C2aitIUXAAAG-Wi.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2aitIUXAAAG-Wi.jpg', 'url': 'https://t.co/IzcaR3Nqyn', 'display_url': 'pic.twitter.com/IzcaR3Nqyn', 'expanded_url': 'https://twitter.com/dog_rates/status/821522889702862852/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 969, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1653, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 549, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1625, 'favorite_count': 7539, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jan 17 18:17:58 +0000 2017', 'id': 821421320206483457, 'id_str': '821421320206483457', 'full_text': 'RT @dog_rates: This is Sampson. He just graduated. Ready to be a doggo now. Time for the real world. 12/10 have fun with taxes https://t.co…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sat Oct 01 19:47:08 +0000 2016', 'id': 782305867769217024, 'id_str': '782305867769217024', 'full_text': 'This is Sampson. He just graduated. Ready to be a doggo now. Time for the real world. 12/10 have fun with taxes https://t.co/pgVKxRw0s1', 'truncated': False, 'display_text_range': [0, 111], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 782305851176525824, 'id_str': '782305851176525824', 'indices': [112, 135], 'media_url': 'http://pbs.twimg.com/media/CttPBt0WIAAcsDE.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CttPBt0WIAAcsDE.jpg', 'url': 'https://t.co/pgVKxRw0s1', 'display_url': 'pic.twitter.com/pgVKxRw0s1', 'expanded_url': 'https://twitter.com/dog_rates/status/782305867769217024/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 600, 'h': 800, 'resize': 'fit'}, 'medium': {'w': 600, 'h': 800, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 782305851176525824, 'id_str': '782305851176525824', 'indices': [112, 135], 'media_url': 'http://pbs.twimg.com/media/CttPBt0WIAAcsDE.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CttPBt0WIAAcsDE.jpg', 'url': 'https://t.co/pgVKxRw0s1', 'display_url': 'pic.twitter.com/pgVKxRw0s1', 'expanded_url': 'https://twitter.com/dog_rates/status/782305867769217024/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 600, 'h': 800, 'resize': 'fit'}, 'medium': {'w': 600, 'h': 800, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 782305851168190464, 'id_str': '782305851168190464', 'indices': [112, 135], 'media_url': 'http://pbs.twimg.com/media/CttPBtyW8AAAUMx.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CttPBtyW8AAAUMx.jpg', 'url': 'https://t.co/pgVKxRw0s1', 'display_url': 'pic.twitter.com/pgVKxRw0s1', 'expanded_url': 'https://twitter.com/dog_rates/status/782305867769217024/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 782305851189125120, 'id_str': '782305851189125120', 'indices': [112, 135], 'media_url': 'http://pbs.twimg.com/media/CttPBt3WYAAmFAm.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CttPBt3WYAAmFAm.jpg', 'url': 'https://t.co/pgVKxRw0s1', 'display_url': 'pic.twitter.com/pgVKxRw0s1', 'expanded_url': 'https://twitter.com/dog_rates/status/782305867769217024/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 600, 'h': 800, 'resize': 'fit'}, 'medium': {'w': 600, 'h': 800, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5103, 'favorite_count': 15656, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 5103, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Tue Jan 17 17:21:47 +0000 2017', 'id': 821407182352777218, 'id_str': '821407182352777218', 'full_text': "This is Sundance. He's a doggo drummer. Even sings a bit on the side. 14/10 entertained af (vid by @sweetsundance) https://t.co/Xn5AQtiqzG", 'truncated': False, 'display_text_range': [0, 114], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'sweetsundance', 'name': 'Sweet Sundance', 'id': 262052670, 'id_str': '262052670', 'indices': [99, 113]}], 'urls': [], 'media': [{'id': 821407155391725568, 'id_str': '821407155391725568', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/821407155391725568/pu/img/AJC07gFJDDBuwNTD.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/821407155391725568/pu/img/AJC07gFJDDBuwNTD.jpg', 'url': 'https://t.co/Xn5AQtiqzG', 'display_url': 'pic.twitter.com/Xn5AQtiqzG', 'expanded_url': 'https://twitter.com/dog_rates/status/821407182352777218/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 568, 'h': 320, 'resize': 'fit'}, 'large': {'w': 568, 'h': 320, 'resize': 'fit'}, 'small': {'w': 568, 'h': 320, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 821407155391725568, 'id_str': '821407155391725568', 'indices': [115, 138], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/821407155391725568/pu/img/AJC07gFJDDBuwNTD.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/821407155391725568/pu/img/AJC07gFJDDBuwNTD.jpg', 'url': 'https://t.co/Xn5AQtiqzG', 'display_url': 'pic.twitter.com/Xn5AQtiqzG', 'expanded_url': 'https://twitter.com/dog_rates/status/821407182352777218/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 568, 'h': 320, 'resize': 'fit'}, 'large': {'w': 568, 'h': 320, 'resize': 'fit'}, 'small': {'w': 568, 'h': 320, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [71, 40], 'duration_millis': 13742, 'variants': [{'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/821407155391725568/pu/pl/2lZLmtVj1vCFlWkH.m3u8'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/821407155391725568/pu/vid/318x180/m3qZ2XpwSfkFrL5q.mp4'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3976, 'favorite_count': 11057, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jan 17 00:33:26 +0000 2017', 'id': 821153421864615936, 'id_str': '821153421864615936', 'full_text': "@imgur for a polar bear tho I'd say 13/10 is appropriate", 'truncated': False, 'display_text_range': [7, 56], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'imgur', 'name': 'Imgur', 'id': 113211856, 'id_str': '113211856', 'indices': [0, 6]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': 821152592717697024, 'in_reply_to_status_id_str': '821152592717697024', 'in_reply_to_user_id': 113211856, 'in_reply_to_user_id_str': '113211856', 'in_reply_to_screen_name': 'imgur', 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 8, 'favorite_count': 236, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Tue Jan 17 00:18:04 +0000 2017', 'id': 821149554670182400, 'id_str': '821149554670182400', 'full_text': 'This is Luca. He got caught howling. H*ckin embarrassed. 12/10 https://t.co/r8DxA8DYJ2', 'truncated': False, 'display_text_range': [0, 62], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 821149477142556673, 'id_str': '821149477142556673', 'indices': [63, 86], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/821149477142556673/pu/img/88_DV098c60pC5AA.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/821149477142556673/pu/img/88_DV098c60pC5AA.jpg', 'url': 'https://t.co/r8DxA8DYJ2', 'display_url': 'pic.twitter.com/r8DxA8DYJ2', 'expanded_url': 'https://twitter.com/dog_rates/status/821149554670182400/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 720, 'h': 1280, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 821149477142556673, 'id_str': '821149477142556673', 'indices': [63, 86], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/821149477142556673/pu/img/88_DV098c60pC5AA.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/821149477142556673/pu/img/88_DV098c60pC5AA.jpg', 'url': 'https://t.co/r8DxA8DYJ2', 'display_url': 'pic.twitter.com/r8DxA8DYJ2', 'expanded_url': 'https://twitter.com/dog_rates/status/821149554670182400/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 720, 'h': 1280, 'resize': 'fit'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [9, 16], 'duration_millis': 9973, 'variants': [{'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/821149477142556673/pu/vid/360x640/EiJigAo1HWWaapjE.mp4'}, {'bitrate': 2176000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/821149477142556673/pu/vid/720x1280/TGcn4gpcV55iVcJN.mp4'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/821149477142556673/pu/vid/180x320/E4au_SLstZi0py2J.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/821149477142556673/pu/pl/-lfb3YUSt5rsjN8K.m3u8'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1818, 'favorite_count': 8083, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jan 16 21:32:06 +0000 2017', 'id': 821107785811234820, 'id_str': '821107785811234820', 'full_text': "Here's a doggo who looks like he's about to give you a list of mythical ingredients to go collect for his potion. 11/10 would obey https://t.co/8SiwKDlRcl", 'truncated': False, 'display_text_range': [0, 130], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 821107776281669633, 'id_str': '821107776281669633', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/media/C2UpLA-UcAEK_Fz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2UpLA-UcAEK_Fz.jpg', 'url': 'https://t.co/8SiwKDlRcl', 'display_url': 'pic.twitter.com/8SiwKDlRcl', 'expanded_url': 'https://twitter.com/dog_rates/status/821107785811234820/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 821107776281669633, 'id_str': '821107776281669633', 'indices': [131, 154], 'media_url': 'http://pbs.twimg.com/media/C2UpLA-UcAEK_Fz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2UpLA-UcAEK_Fz.jpg', 'url': 'https://t.co/8SiwKDlRcl', 'display_url': 'pic.twitter.com/8SiwKDlRcl', 'expanded_url': 'https://twitter.com/dog_rates/status/821107785811234820/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1962, 'favorite_count': 9026, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jan 16 17:20:45 +0000 2017', 'id': 821044531881721856, 'id_str': '821044531881721856', 'full_text': "This is Flash. He went way too hard celebrating Martin Luther King Day last night. 12/10 now he's having a dream in his honor https://t.co/bryVdNaRcu", 'truncated': False, 'display_text_range': [0, 125], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 821044517277233152, 'id_str': '821044517277233152', 'indices': [126, 149], 'media_url': 'http://pbs.twimg.com/media/C2Tvo20XcAAhNL9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2Tvo20XcAAhNL9.jpg', 'url': 'https://t.co/bryVdNaRcu', 'display_url': 'pic.twitter.com/bryVdNaRcu', 'expanded_url': 'https://twitter.com/dog_rates/status/821044531881721856/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 821044517277233152, 'id_str': '821044517277233152', 'indices': [126, 149], 'media_url': 'http://pbs.twimg.com/media/C2Tvo20XcAAhNL9.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2Tvo20XcAAhNL9.jpg', 'url': 'https://t.co/bryVdNaRcu', 'display_url': 'pic.twitter.com/bryVdNaRcu', 'expanded_url': 'https://twitter.com/dog_rates/status/821044531881721856/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2114, 'favorite_count': 11895, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jan 16 03:37:31 +0000 2017', 'id': 820837357901512704, 'id_str': '820837357901512704', 'full_text': "RT @dog_rates: This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Wed Jan 11 17:01:16 +0000 2017', 'id': 819227688460238848, 'id_str': '819227688460238848', 'full_text': "This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5LJT", 'truncated': False, 'display_text_range': [0, 103], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 819227674182828033, 'id_str': '819227674182828033', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg', 'url': 'https://t.co/ii5eNX5LJT', 'display_url': 'pic.twitter.com/ii5eNX5LJT', 'expanded_url': 'https://twitter.com/dog_rates/status/819227688460238848/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1640, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 545, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 961, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 819227674182828033, 'id_str': '819227674182828033', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg', 'url': 'https://t.co/ii5eNX5LJT', 'display_url': 'pic.twitter.com/ii5eNX5LJT', 'expanded_url': 'https://twitter.com/dog_rates/status/819227688460238848/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1640, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 545, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 961, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6211, 'favorite_count': 21721, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 6211, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sun Jan 15 21:49:15 +0000 2017', 'id': 820749716845686786, 'id_str': '820749716845686786', 'full_text': 'Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EMq8Ud6Ze1', 'truncated': False, 'display_text_range': [0, 108], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 820749705474965509, 'id_str': '820749705474965509', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/C2PjgjRXgAUgKyC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2PjgjRXgAUgKyC.jpg', 'url': 'https://t.co/EMq8Ud6Ze1', 'display_url': 'pic.twitter.com/EMq8Ud6Ze1', 'expanded_url': 'https://twitter.com/dog_rates/status/820749716845686786/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 820749705474965509, 'id_str': '820749705474965509', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/C2PjgjRXgAUgKyC.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2PjgjRXgAUgKyC.jpg', 'url': 'https://t.co/EMq8Ud6Ze1', 'display_url': 'pic.twitter.com/EMq8Ud6Ze1', 'expanded_url': 'https://twitter.com/dog_rates/status/820749716845686786/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 820749705470767104, 'id_str': '820749705470767104', 'indices': [109, 132], 'media_url': 'http://pbs.twimg.com/media/C2PjgjQXcAAc4Uu.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2PjgjQXcAAc4Uu.jpg', 'url': 'https://t.co/EMq8Ud6Ze1', 'display_url': 'pic.twitter.com/EMq8Ud6Ze1', 'expanded_url': 'https://twitter.com/dog_rates/status/820749716845686786/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 9149, 'favorite_count': 29705, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jan 15 17:52:40 +0000 2017', 'id': 820690176645140481, 'id_str': '820690176645140481', 'full_text': 'The floofs have been released I repeat the floofs have been released. 84/70 https://t.co/NIYC820tmd', 'truncated': False, 'display_text_range': [0, 75], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 820690162338279425, 'id_str': '820690162338279425', 'indices': [76, 99], 'media_url': 'http://pbs.twimg.com/media/C2OtWrzUsAE8i0D.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2OtWrzUsAE8i0D.jpg', 'url': 'https://t.co/NIYC820tmd', 'display_url': 'pic.twitter.com/NIYC820tmd', 'expanded_url': 'https://twitter.com/dog_rates/status/820690176645140481/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 820690162338279425, 'id_str': '820690162338279425', 'indices': [76, 99], 'media_url': 'http://pbs.twimg.com/media/C2OtWrzUsAE8i0D.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2OtWrzUsAE8i0D.jpg', 'url': 'https://t.co/NIYC820tmd', 'display_url': 'pic.twitter.com/NIYC820tmd', 'expanded_url': 'https://twitter.com/dog_rates/status/820690176645140481/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}, {'id': 820690162342510593, 'id_str': '820690162342510593', 'indices': [76, 99], 'media_url': 'http://pbs.twimg.com/media/C2OtWr0VQAEnS9r.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2OtWr0VQAEnS9r.jpg', 'url': 'https://t.co/NIYC820tmd', 'display_url': 'pic.twitter.com/NIYC820tmd', 'expanded_url': 'https://twitter.com/dog_rates/status/820690176645140481/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 529, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 933, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1592, 'resize': 'fit'}}}, {'id': 820690162342473728, 'id_str': '820690162342473728', 'indices': [76, 99], 'media_url': 'http://pbs.twimg.com/media/C2OtWr0UsAASsmO.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2OtWr0UsAASsmO.jpg', 'url': 'https://t.co/NIYC820tmd', 'display_url': 'pic.twitter.com/NIYC820tmd', 'expanded_url': 'https://twitter.com/dog_rates/status/820690176645140481/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 956, 'resize': 'fit'}, 'small': {'w': 680, 'h': 542, 'resize': 'fit'}, 'large': {'w': 2048, 'h': 1632, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2988, 'favorite_count': 11552, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jan 15 04:56:16 +0000 2017', 'id': 820494788566847489, 'id_str': '820494788566847489', 'full_text': 'RT @dog_rates: We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}, {'screen_name': 'LoveYourMelon', 'name': 'Love Your Melon', 'id': 872887164, 'id_str': '872887164', 'indices': [39, 53]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sat Jan 14 17:00:24 +0000 2017', 'id': 820314633777061888, 'id_str': '820314633777061888', 'full_text': 'We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t.co/XQlmPTLHPl https://t.co/ZNIkkHgtYE', 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'LoveYourMelon', 'name': 'Love Your Melon', 'id': 872887164, 'id_str': '872887164', 'indices': [24, 38]}], 'urls': [{'url': 'https://t.co/XQlmPTLHPl', 'expanded_url': 'https://www.loveyourmelon.com/pages/ourstory', 'display_url': 'loveyourmelon.com/pages/ourstory', 'indices': [115, 138]}], 'media': [{'id': 820314599069138944, 'id_str': '820314599069138944', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C2JXyBmVQAAA8th.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2JXyBmVQAAA8th.jpg', 'url': 'https://t.co/ZNIkkHgtYE', 'display_url': 'pic.twitter.com/ZNIkkHgtYE', 'expanded_url': 'https://twitter.com/dog_rates/status/820314633777061888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1638, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 820314599069138944, 'id_str': '820314599069138944', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C2JXyBmVQAAA8th.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2JXyBmVQAAA8th.jpg', 'url': 'https://t.co/ZNIkkHgtYE', 'display_url': 'pic.twitter.com/ZNIkkHgtYE', 'expanded_url': 'https://twitter.com/dog_rates/status/820314633777061888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1638, 'h': 2048, 'resize': 'fit'}}}, {'id': 820314598712541185, 'id_str': '820314598712541185', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C2JXyARUAAE4gbL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2JXyARUAAE4gbL.jpg', 'url': 'https://t.co/ZNIkkHgtYE', 'display_url': 'pic.twitter.com/ZNIkkHgtYE', 'expanded_url': 'https://twitter.com/dog_rates/status/820314633777061888/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}, {'id': 820314598733557761, 'id_str': '820314598733557761', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C2JXyAWUsAER4AZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2JXyAWUsAER4AZ.jpg', 'url': 'https://t.co/ZNIkkHgtYE', 'display_url': 'pic.twitter.com/ZNIkkHgtYE', 'expanded_url': 'https://twitter.com/dog_rates/status/820314633777061888/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 750, 'h': 1334, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 521, 'favorite_count': 3152, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 521, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Sun Jan 15 01:45:15 +0000 2017', 'id': 820446719150292993, 'id_str': '820446719150292993', 'full_text': "RT @dog_rates: This is Peaches. She's the ultimate selfie sidekick. Super sneaky tongue slip appreciated. 13/10 https://t.co/pbKOesr8Tg", 'truncated': False, 'display_text_range': [0, 135], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 800141411257643009, 'id_str': '800141411257643009', 'indices': [112, 135], 'media_url': 'http://pbs.twimg.com/media/CxqsX8wXcAEnc3u.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CxqsX8wXcAEnc3u.jpg', 'url': 'https://t.co/pbKOesr8Tg', 'display_url': 'pic.twitter.com/pbKOesr8Tg', 'expanded_url': 'https://twitter.com/dog_rates/status/800141422401830912/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}}, 'source_status_id': 800141422401830912, 'source_status_id_str': '800141422401830912', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 800141411257643009, 'id_str': '800141411257643009', 'indices': [112, 135], 'media_url': 'http://pbs.twimg.com/media/CxqsX8wXcAEnc3u.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CxqsX8wXcAEnc3u.jpg', 'url': 'https://t.co/pbKOesr8Tg', 'display_url': 'pic.twitter.com/pbKOesr8Tg', 'expanded_url': 'https://twitter.com/dog_rates/status/800141422401830912/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}}, 'source_status_id': 800141422401830912, 'source_status_id_str': '800141422401830912', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 800141411266007041, 'id_str': '800141411266007041', 'indices': [112, 135], 'media_url': 'http://pbs.twimg.com/media/CxqsX8yXEAEkgUe.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CxqsX8yXEAEkgUe.jpg', 'url': 'https://t.co/pbKOesr8Tg', 'display_url': 'pic.twitter.com/pbKOesr8Tg', 'expanded_url': 'https://twitter.com/dog_rates/status/800141422401830912/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}, 'source_status_id': 800141422401830912, 'source_status_id_str': '800141422401830912', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 800141411844837376, 'id_str': '800141411844837376', 'indices': [112, 135], 'media_url': 'http://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg', 'url': 'https://t.co/pbKOesr8Tg', 'display_url': 'pic.twitter.com/pbKOesr8Tg', 'expanded_url': 'https://twitter.com/dog_rates/status/800141422401830912/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}, 'source_status_id': 800141422401830912, 'source_status_id_str': '800141422401830912', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Sun Nov 20 00:59:15 +0000 2016', 'id': 800141422401830912, 'id_str': '800141422401830912', 'full_text': "This is Peaches. She's the ultimate selfie sidekick. Super sneaky tongue slip appreciated. 13/10 https://t.co/pbKOesr8Tg", 'truncated': False, 'display_text_range': [0, 96], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 800141411257643009, 'id_str': '800141411257643009', 'indices': [97, 120], 'media_url': 'http://pbs.twimg.com/media/CxqsX8wXcAEnc3u.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CxqsX8wXcAEnc3u.jpg', 'url': 'https://t.co/pbKOesr8Tg', 'display_url': 'pic.twitter.com/pbKOesr8Tg', 'expanded_url': 'https://twitter.com/dog_rates/status/800141422401830912/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 800141411257643009, 'id_str': '800141411257643009', 'indices': [97, 120], 'media_url': 'http://pbs.twimg.com/media/CxqsX8wXcAEnc3u.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CxqsX8wXcAEnc3u.jpg', 'url': 'https://t.co/pbKOesr8Tg', 'display_url': 'pic.twitter.com/pbKOesr8Tg', 'expanded_url': 'https://twitter.com/dog_rates/status/800141422401830912/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}}}, {'id': 800141411266007041, 'id_str': '800141411266007041', 'indices': [97, 120], 'media_url': 'http://pbs.twimg.com/media/CxqsX8yXEAEkgUe.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CxqsX8yXEAEkgUe.jpg', 'url': 'https://t.co/pbKOesr8Tg', 'display_url': 'pic.twitter.com/pbKOesr8Tg', 'expanded_url': 'https://twitter.com/dog_rates/status/800141422401830912/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}, {'id': 800141411844837376, 'id_str': '800141411844837376', 'indices': [97, 120], 'media_url': 'http://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg', 'url': 'https://t.co/pbKOesr8Tg', 'display_url': 'pic.twitter.com/pbKOesr8Tg', 'expanded_url': 'https://twitter.com/dog_rates/status/800141422401830912/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'medium': {'w': 1024, 'h': 768, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2383, 'favorite_count': 14461, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 2383, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jan 14 17:00:24 +0000 2017', 'id': 820314633777061888, 'id_str': '820314633777061888', 'full_text': 'We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t.co/XQlmPTLHPl https://t.co/ZNIkkHgtYE', 'truncated': False, 'display_text_range': [0, 138], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'LoveYourMelon', 'name': 'Love Your Melon', 'id': 872887164, 'id_str': '872887164', 'indices': [24, 38]}], 'urls': [{'url': 'https://t.co/XQlmPTLHPl', 'expanded_url': 'https://www.loveyourmelon.com/pages/ourstory', 'display_url': 'loveyourmelon.com/pages/ourstory', 'indices': [115, 138]}], 'media': [{'id': 820314599069138944, 'id_str': '820314599069138944', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C2JXyBmVQAAA8th.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2JXyBmVQAAA8th.jpg', 'url': 'https://t.co/ZNIkkHgtYE', 'display_url': 'pic.twitter.com/ZNIkkHgtYE', 'expanded_url': 'https://twitter.com/dog_rates/status/820314633777061888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1638, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 820314599069138944, 'id_str': '820314599069138944', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C2JXyBmVQAAA8th.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2JXyBmVQAAA8th.jpg', 'url': 'https://t.co/ZNIkkHgtYE', 'display_url': 'pic.twitter.com/ZNIkkHgtYE', 'expanded_url': 'https://twitter.com/dog_rates/status/820314633777061888/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1638, 'h': 2048, 'resize': 'fit'}}}, {'id': 820314598712541185, 'id_str': '820314598712541185', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C2JXyARUAAE4gbL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2JXyARUAAE4gbL.jpg', 'url': 'https://t.co/ZNIkkHgtYE', 'display_url': 'pic.twitter.com/ZNIkkHgtYE', 'expanded_url': 'https://twitter.com/dog_rates/status/820314633777061888/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}, {'id': 820314598733557761, 'id_str': '820314598733557761', 'indices': [139, 162], 'media_url': 'http://pbs.twimg.com/media/C2JXyAWUsAER4AZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2JXyAWUsAER4AZ.jpg', 'url': 'https://t.co/ZNIkkHgtYE', 'display_url': 'pic.twitter.com/ZNIkkHgtYE', 'expanded_url': 'https://twitter.com/dog_rates/status/820314633777061888/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 750, 'h': 1334, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 521, 'favorite_count': 3152, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jan 14 01:22:35 +0000 2017', 'id': 820078625395449857, 'id_str': '820078625395449857', 'full_text': "I've never wanted to go to a camp more in my entire life. 12/10 for all on board https://t.co/wJZlpGFEbD", 'truncated': False, 'display_text_range': [0, 80], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 820078598778454020, 'id_str': '820078598778454020', 'indices': [81, 104], 'media_url': 'http://pbs.twimg.com/media/C2GBJAAXAAQP287.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2GBJAAXAAQP287.jpg', 'url': 'https://t.co/wJZlpGFEbD', 'display_url': 'pic.twitter.com/wJZlpGFEbD', 'expanded_url': 'https://twitter.com/dog_rates/status/820078625395449857/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 820078598778454020, 'id_str': '820078598778454020', 'indices': [81, 104], 'media_url': 'http://pbs.twimg.com/media/C2GBJAAXAAQP287.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2GBJAAXAAQP287.jpg', 'url': 'https://t.co/wJZlpGFEbD', 'display_url': 'pic.twitter.com/wJZlpGFEbD', 'expanded_url': 'https://twitter.com/dog_rates/status/820078625395449857/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 820078598786842624, 'id_str': '820078598786842624', 'indices': [81, 104], 'media_url': 'http://pbs.twimg.com/media/C2GBJACXAAAjTdg.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2GBJACXAAAjTdg.jpg', 'url': 'https://t.co/wJZlpGFEbD', 'display_url': 'pic.twitter.com/wJZlpGFEbD', 'expanded_url': 'https://twitter.com/dog_rates/status/820078625395449857/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 820078598790979588, 'id_str': '820078598790979588', 'indices': [81, 104], 'media_url': 'http://pbs.twimg.com/media/C2GBJADWIAQvcNb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2GBJADWIAQvcNb.jpg', 'url': 'https://t.co/wJZlpGFEbD', 'display_url': 'pic.twitter.com/wJZlpGFEbD', 'expanded_url': 'https://twitter.com/dog_rates/status/820078625395449857/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5760, 'favorite_count': 18557, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jan 13 21:04:55 +0000 2017', 'id': 820013781606658049, 'id_str': '820013781606658049', 'full_text': 'RT @dog_rates: This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://…', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Fri Jan 13 17:00:21 +0000 2017', 'id': 819952236453363712, 'id_str': '819952236453363712', 'full_text': 'This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://t.co/f5WMsx0a9K https://t.co/6lJz0DKZIb', 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/f5WMsx0a9K', 'expanded_url': 'https://www.gofundme.com/servicedogoliver', 'display_url': 'gofundme.com/servicedogoliv…', 'indices': [116, 139]}], 'media': [{'id': 819952225594261509, 'id_str': '819952225594261509', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg', 'url': 'https://t.co/6lJz0DKZIb', 'display_url': 'pic.twitter.com/6lJz0DKZIb', 'expanded_url': 'https://twitter.com/dog_rates/status/819952236453363712/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 545, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 600, 'h': 749, 'resize': 'fit'}, 'medium': {'w': 600, 'h': 749, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 819952225594261509, 'id_str': '819952225594261509', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg', 'url': 'https://t.co/6lJz0DKZIb', 'display_url': 'pic.twitter.com/6lJz0DKZIb', 'expanded_url': 'https://twitter.com/dog_rates/status/819952236453363712/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 545, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 600, 'h': 749, 'resize': 'fit'}, 'medium': {'w': 600, 'h': 749, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1078, 'favorite_count': 5003, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 1078, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Fri Jan 13 17:00:21 +0000 2017', 'id': 819952236453363712, 'id_str': '819952236453363712', 'full_text': 'This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://t.co/f5WMsx0a9K https://t.co/6lJz0DKZIb', 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/f5WMsx0a9K', 'expanded_url': 'https://www.gofundme.com/servicedogoliver', 'display_url': 'gofundme.com/servicedogoliv…', 'indices': [116, 139]}], 'media': [{'id': 819952225594261509, 'id_str': '819952225594261509', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg', 'url': 'https://t.co/6lJz0DKZIb', 'display_url': 'pic.twitter.com/6lJz0DKZIb', 'expanded_url': 'https://twitter.com/dog_rates/status/819952236453363712/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 545, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 600, 'h': 749, 'resize': 'fit'}, 'medium': {'w': 600, 'h': 749, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 819952225594261509, 'id_str': '819952225594261509', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg', 'url': 'https://t.co/6lJz0DKZIb', 'display_url': 'pic.twitter.com/6lJz0DKZIb', 'expanded_url': 'https://twitter.com/dog_rates/status/819952236453363712/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 545, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 600, 'h': 749, 'resize': 'fit'}, 'medium': {'w': 600, 'h': 749, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1078, 'favorite_count': 5003, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jan 13 15:08:56 +0000 2017', 'id': 819924195358416896, 'id_str': '819924195358416896', 'full_text': "Here we have a doggo who has messed up. He was hoping you wouldn't notice. 11/10 someone help him https://t.co/XdRNXNYD4E", 'truncated': False, 'display_text_range': [0, 97], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 819924138965999617, 'id_str': '819924138965999617', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/819924138965999617/pu/img/6OIToyT9eLESHXLU.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/819924138965999617/pu/img/6OIToyT9eLESHXLU.jpg', 'url': 'https://t.co/XdRNXNYD4E', 'display_url': 'pic.twitter.com/XdRNXNYD4E', 'expanded_url': 'https://twitter.com/dog_rates/status/819924195358416896/video/1', 'type': 'photo', 'sizes': {'medium': {'w': 480, 'h': 270, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 480, 'h': 270, 'resize': 'fit'}, 'large': {'w': 480, 'h': 270, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 819924138965999617, 'id_str': '819924138965999617', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/819924138965999617/pu/img/6OIToyT9eLESHXLU.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/819924138965999617/pu/img/6OIToyT9eLESHXLU.jpg', 'url': 'https://t.co/XdRNXNYD4E', 'display_url': 'pic.twitter.com/XdRNXNYD4E', 'expanded_url': 'https://twitter.com/dog_rates/status/819924195358416896/video/1', 'type': 'video', 'sizes': {'medium': {'w': 480, 'h': 270, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 480, 'h': 270, 'resize': 'fit'}, 'large': {'w': 480, 'h': 270, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [16, 9], 'duration_millis': 26300, 'variants': [{'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/819924138965999617/pu/vid/320x180/M2MxmTw_gkf0jHvh.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/819924138965999617/pu/pl/ExbfVGjHPVfDYLRs.m3u8'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4523, 'favorite_count': 12190, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jan 13 01:03:12 +0000 2017', 'id': 819711362133872643, 'id_str': '819711362133872643', 'full_text': 'This is Howie. He just bloomed. 11/10 revolutionary af https://t.co/m5fYxrO3IU', 'truncated': False, 'display_text_range': [0, 54], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 819711336993198081, 'id_str': '819711336993198081', 'indices': [55, 78], 'media_url': 'http://pbs.twimg.com/media/C2AzHjPXEAEZ3D1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2AzHjPXEAEZ3D1.jpg', 'url': 'https://t.co/m5fYxrO3IU', 'display_url': 'pic.twitter.com/m5fYxrO3IU', 'expanded_url': 'https://twitter.com/dog_rates/status/819711362133872643/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 630, 'h': 215, 'resize': 'fit'}, 'medium': {'w': 630, 'h': 215, 'resize': 'fit'}, 'small': {'w': 630, 'h': 215, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 819711336993198081, 'id_str': '819711336993198081', 'indices': [55, 78], 'media_url': 'http://pbs.twimg.com/media/C2AzHjPXEAEZ3D1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2AzHjPXEAEZ3D1.jpg', 'url': 'https://t.co/m5fYxrO3IU', 'display_url': 'pic.twitter.com/m5fYxrO3IU', 'expanded_url': 'https://twitter.com/dog_rates/status/819711362133872643/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 630, 'h': 215, 'resize': 'fit'}, 'medium': {'w': 630, 'h': 215, 'resize': 'fit'}, 'small': {'w': 630, 'h': 215, 'resize': 'fit'}}}, {'id': 819711336997339136, 'id_str': '819711336997339136', 'indices': [55, 78], 'media_url': 'http://pbs.twimg.com/media/C2AzHjQWQAApuhf.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C2AzHjQWQAApuhf.jpg', 'url': 'https://t.co/m5fYxrO3IU', 'display_url': 'pic.twitter.com/m5fYxrO3IU', 'expanded_url': 'https://twitter.com/dog_rates/status/819711362133872643/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2853, 'favorite_count': 12571, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jan 12 16:54:26 +0000 2017', 'id': 819588359383371776, 'id_str': '819588359383371776', 'full_text': "This is Jazzy. She just found out that sandwich wasn't for her. Shocked and puppalled. 13/10 deep breaths Jazzy https://t.co/52cItP0vIO", 'truncated': False, 'display_text_range': [0, 111], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 819588347551064066, 'id_str': '819588347551064066', 'indices': [112, 135], 'media_url': 'http://pbs.twimg.com/media/C1_DQn3UoAIoJy7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1_DQn3UoAIoJy7.jpg', 'url': 'https://t.co/52cItP0vIO', 'display_url': 'pic.twitter.com/52cItP0vIO', 'expanded_url': 'https://twitter.com/dog_rates/status/819588359383371776/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1151, 'h': 1151, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1151, 'h': 1151, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 819588347551064066, 'id_str': '819588347551064066', 'indices': [112, 135], 'media_url': 'http://pbs.twimg.com/media/C1_DQn3UoAIoJy7.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1_DQn3UoAIoJy7.jpg', 'url': 'https://t.co/52cItP0vIO', 'display_url': 'pic.twitter.com/52cItP0vIO', 'expanded_url': 'https://twitter.com/dog_rates/status/819588359383371776/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1151, 'h': 1151, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 1151, 'h': 1151, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1863, 'favorite_count': 9126, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jan 12 00:55:47 +0000 2017', 'id': 819347104292290561, 'id_str': '819347104292290561', 'full_text': "Say hello to Anna and Elsa. They fall asleep in similar positions. It's pretty wild. Both 12/10 would snug simultaneously https://t.co/8rUL99bX4W", 'truncated': False, 'display_text_range': [0, 121], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 819347090459463681, 'id_str': '819347090459463681', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C17n1nKWEAEQBCo.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C17n1nKWEAEQBCo.jpg', 'url': 'https://t.co/8rUL99bX4W', 'display_url': 'pic.twitter.com/8rUL99bX4W', 'expanded_url': 'https://twitter.com/dog_rates/status/819347104292290561/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 819347090459463681, 'id_str': '819347090459463681', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C17n1nKWEAEQBCo.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C17n1nKWEAEQBCo.jpg', 'url': 'https://t.co/8rUL99bX4W', 'display_url': 'pic.twitter.com/8rUL99bX4W', 'expanded_url': 'https://twitter.com/dog_rates/status/819347104292290561/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 819347090467946496, 'id_str': '819347090467946496', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C17n1nMXgAAnRxy.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C17n1nMXgAAnRxy.jpg', 'url': 'https://t.co/8rUL99bX4W', 'display_url': 'pic.twitter.com/8rUL99bX4W', 'expanded_url': 'https://twitter.com/dog_rates/status/819347104292290561/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1150, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 674, 'h': 1200, 'resize': 'fit'}}}, {'id': 819347090597888002, 'id_str': '819347090597888002', 'indices': [122, 145], 'media_url': 'http://pbs.twimg.com/media/C17n1nrWQAIErU3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C17n1nrWQAIErU3.jpg', 'url': 'https://t.co/8rUL99bX4W', 'display_url': 'pic.twitter.com/8rUL99bX4W', 'expanded_url': 'https://twitter.com/dog_rates/status/819347104292290561/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1115, 'favorite_count': 6811, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jan 11 17:42:57 +0000 2017', 'id': 819238181065359361, 'id_str': '819238181065359361', 'full_text': 'Some happy pupper news to share. 10/10 for everyone involved \nhttps://t.co/MefMAZX2uv', 'truncated': False, 'display_text_range': [0, 85], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/MefMAZX2uv', 'expanded_url': 'http://us.blastingnews.com/news/2017/01/200-dogs-saved-from-south-korean-dog-meat-industry-001385441.html?sbdht=_pM1QUzk3wsfscF9XF2WEd9KoWDpsQlMUjfh1HxxUq0u5mMbiu2B0kw2_', 'display_url': 'us.blastingnews.com/news/2017/01/2…', 'indices': [62, 85]}]}, 'source': '<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 378, 'favorite_count': 2133, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jan 11 17:01:16 +0000 2017', 'id': 819227688460238848, 'id_str': '819227688460238848', 'full_text': "This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5LJT", 'truncated': False, 'display_text_range': [0, 103], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 819227674182828033, 'id_str': '819227674182828033', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg', 'url': 'https://t.co/ii5eNX5LJT', 'display_url': 'pic.twitter.com/ii5eNX5LJT', 'expanded_url': 'https://twitter.com/dog_rates/status/819227688460238848/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1640, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 545, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 961, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 819227674182828033, 'id_str': '819227674182828033', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg', 'url': 'https://t.co/ii5eNX5LJT', 'display_url': 'pic.twitter.com/ii5eNX5LJT', 'expanded_url': 'https://twitter.com/dog_rates/status/819227688460238848/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 1640, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 545, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 961, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 6211, 'favorite_count': 21721, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jan 11 02:57:27 +0000 2017', 'id': 819015337530290176, 'id_str': '819015337530290176', 'full_text': 'RT @dog_rates: This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1', 'truncated': False, 'display_text_range': [0, 122], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 819004789207928832, 'id_str': '819004789207928832', 'indices': [99, 122], 'media_url': 'http://pbs.twimg.com/media/C12whDoVEAALRxa.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg', 'url': 'https://t.co/AdPKrI8BZ1', 'display_url': 'pic.twitter.com/AdPKrI8BZ1', 'expanded_url': 'https://twitter.com/dog_rates/status/819004803107983360/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 488, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 717, 'h': 1000, 'resize': 'fit'}, 'medium': {'w': 717, 'h': 1000, 'resize': 'fit'}}, 'source_status_id': 819004803107983360, 'source_status_id_str': '819004803107983360', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 819004789207928832, 'id_str': '819004789207928832', 'indices': [99, 122], 'media_url': 'http://pbs.twimg.com/media/C12whDoVEAALRxa.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg', 'url': 'https://t.co/AdPKrI8BZ1', 'display_url': 'pic.twitter.com/AdPKrI8BZ1', 'expanded_url': 'https://twitter.com/dog_rates/status/819004803107983360/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 488, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 717, 'h': 1000, 'resize': 'fit'}, 'medium': {'w': 717, 'h': 1000, 'resize': 'fit'}}, 'source_status_id': 819004803107983360, 'source_status_id_str': '819004803107983360', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 819004789212098560, 'id_str': '819004789212098560', 'indices': [99, 122], 'media_url': 'http://pbs.twimg.com/media/C12whDpUsAADUcB.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12whDpUsAADUcB.jpg', 'url': 'https://t.co/AdPKrI8BZ1', 'display_url': 'pic.twitter.com/AdPKrI8BZ1', 'expanded_url': 'https://twitter.com/dog_rates/status/819004803107983360/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 948, 'h': 633, 'resize': 'fit'}, 'small': {'w': 680, 'h': 454, 'resize': 'fit'}, 'large': {'w': 948, 'h': 633, 'resize': 'fit'}}, 'source_status_id': 819004803107983360, 'source_status_id_str': '819004803107983360', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 819004789430198272, 'id_str': '819004789430198272', 'indices': [99, 122], 'media_url': 'http://pbs.twimg.com/media/C12whEdUoAAlszl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12whEdUoAAlszl.jpg', 'url': 'https://t.co/AdPKrI8BZ1', 'display_url': 'pic.twitter.com/AdPKrI8BZ1', 'expanded_url': 'https://twitter.com/dog_rates/status/819004803107983360/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1432, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 475, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 839, 'h': 1200, 'resize': 'fit'}}, 'source_status_id': 819004803107983360, 'source_status_id_str': '819004803107983360', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 819004789430198274, 'id_str': '819004789430198274', 'indices': [99, 122], 'media_url': 'http://pbs.twimg.com/media/C12whEdUoAIo41P.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12whEdUoAIo41P.jpg', 'url': 'https://t.co/AdPKrI8BZ1', 'display_url': 'pic.twitter.com/AdPKrI8BZ1', 'expanded_url': 'https://twitter.com/dog_rates/status/819004803107983360/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 900, 'h': 600, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 600, 'resize': 'fit'}}, 'source_status_id': 819004803107983360, 'source_status_id_str': '819004803107983360', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Wed Jan 11 02:15:36 +0000 2017', 'id': 819004803107983360, 'id_str': '819004803107983360', 'full_text': 'This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1', 'truncated': False, 'display_text_range': [0, 83], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 819004789207928832, 'id_str': '819004789207928832', 'indices': [84, 107], 'media_url': 'http://pbs.twimg.com/media/C12whDoVEAALRxa.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg', 'url': 'https://t.co/AdPKrI8BZ1', 'display_url': 'pic.twitter.com/AdPKrI8BZ1', 'expanded_url': 'https://twitter.com/dog_rates/status/819004803107983360/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 488, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 717, 'h': 1000, 'resize': 'fit'}, 'medium': {'w': 717, 'h': 1000, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 819004789207928832, 'id_str': '819004789207928832', 'indices': [84, 107], 'media_url': 'http://pbs.twimg.com/media/C12whDoVEAALRxa.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg', 'url': 'https://t.co/AdPKrI8BZ1', 'display_url': 'pic.twitter.com/AdPKrI8BZ1', 'expanded_url': 'https://twitter.com/dog_rates/status/819004803107983360/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 488, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 717, 'h': 1000, 'resize': 'fit'}, 'medium': {'w': 717, 'h': 1000, 'resize': 'fit'}}}, {'id': 819004789212098560, 'id_str': '819004789212098560', 'indices': [84, 107], 'media_url': 'http://pbs.twimg.com/media/C12whDpUsAADUcB.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12whDpUsAADUcB.jpg', 'url': 'https://t.co/AdPKrI8BZ1', 'display_url': 'pic.twitter.com/AdPKrI8BZ1', 'expanded_url': 'https://twitter.com/dog_rates/status/819004803107983360/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 948, 'h': 633, 'resize': 'fit'}, 'small': {'w': 680, 'h': 454, 'resize': 'fit'}, 'large': {'w': 948, 'h': 633, 'resize': 'fit'}}}, {'id': 819004789430198272, 'id_str': '819004789430198272', 'indices': [84, 107], 'media_url': 'http://pbs.twimg.com/media/C12whEdUoAAlszl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12whEdUoAAlszl.jpg', 'url': 'https://t.co/AdPKrI8BZ1', 'display_url': 'pic.twitter.com/AdPKrI8BZ1', 'expanded_url': 'https://twitter.com/dog_rates/status/819004803107983360/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1432, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 475, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 839, 'h': 1200, 'resize': 'fit'}}}, {'id': 819004789430198274, 'id_str': '819004789430198274', 'indices': [84, 107], 'media_url': 'http://pbs.twimg.com/media/C12whEdUoAIo41P.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12whEdUoAIo41P.jpg', 'url': 'https://t.co/AdPKrI8BZ1', 'display_url': 'pic.twitter.com/AdPKrI8BZ1', 'expanded_url': 'https://twitter.com/dog_rates/status/819004803107983360/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 900, 'h': 600, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 34393, 'favorite_count': 82359, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 34393, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jan 11 02:57:26 +0000 2017', 'id': 819015331746349057, 'id_str': '819015331746349057', 'full_text': 'RT @dog_rates: This is Sunny. She was also a very good First Doggo. 14/10 would also be an absolute honor to pet https://t.co/YOC1fHFCSb', 'truncated': False, 'display_text_range': [0, 136], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 819006388206649344, 'id_str': '819006388206649344', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C12x-IXVQAA08TD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12x-IXVQAA08TD.jpg', 'url': 'https://t.co/YOC1fHFCSb', 'display_url': 'pic.twitter.com/YOC1fHFCSb', 'expanded_url': 'https://twitter.com/dog_rates/status/819006400881917954/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 799, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 1023, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}}, 'source_status_id': 819006400881917954, 'source_status_id_str': '819006400881917954', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 819006388206649344, 'id_str': '819006388206649344', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C12x-IXVQAA08TD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12x-IXVQAA08TD.jpg', 'url': 'https://t.co/YOC1fHFCSb', 'display_url': 'pic.twitter.com/YOC1fHFCSb', 'expanded_url': 'https://twitter.com/dog_rates/status/819006400881917954/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 799, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 1023, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}}, 'source_status_id': 819006400881917954, 'source_status_id_str': '819006400881917954', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 819006388244361216, 'id_str': '819006388244361216', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C12x-IgUsAAulM4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12x-IgUsAAulM4.jpg', 'url': 'https://t.co/YOC1fHFCSb', 'display_url': 'pic.twitter.com/YOC1fHFCSb', 'expanded_url': 'https://twitter.com/dog_rates/status/819006400881917954/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 683, 'resize': 'fit'}, 'small': {'w': 680, 'h': 454, 'resize': 'fit'}}, 'source_status_id': 819006400881917954, 'source_status_id_str': '819006400881917954', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 819006388449837058, 'id_str': '819006388449837058', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C12x-JRUAAIgwdf.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12x-JRUAAIgwdf.jpg', 'url': 'https://t.co/YOC1fHFCSb', 'display_url': 'pic.twitter.com/YOC1fHFCSb', 'expanded_url': 'https://twitter.com/dog_rates/status/819006400881917954/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 760, 'h': 430, 'resize': 'fit'}, 'large': {'w': 760, 'h': 430, 'resize': 'fit'}, 'small': {'w': 680, 'h': 385, 'resize': 'fit'}}, 'source_status_id': 819006400881917954, 'source_status_id_str': '819006400881917954', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 819006388458299392, 'id_str': '819006388458299392', 'indices': [113, 136], 'media_url': 'http://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg', 'url': 'https://t.co/YOC1fHFCSb', 'display_url': 'pic.twitter.com/YOC1fHFCSb', 'expanded_url': 'https://twitter.com/dog_rates/status/819006400881917954/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 640, 'h': 426, 'resize': 'fit'}, 'medium': {'w': 640, 'h': 426, 'resize': 'fit'}, 'large': {'w': 640, 'h': 426, 'resize': 'fit'}}, 'source_status_id': 819006400881917954, 'source_status_id_str': '819006400881917954', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Wed Jan 11 02:21:57 +0000 2017', 'id': 819006400881917954, 'id_str': '819006400881917954', 'full_text': 'This is Sunny. She was also a very good First Doggo. 14/10 would also be an absolute honor to pet https://t.co/YOC1fHFCSb', 'truncated': False, 'display_text_range': [0, 97], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 819006388206649344, 'id_str': '819006388206649344', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/media/C12x-IXVQAA08TD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12x-IXVQAA08TD.jpg', 'url': 'https://t.co/YOC1fHFCSb', 'display_url': 'pic.twitter.com/YOC1fHFCSb', 'expanded_url': 'https://twitter.com/dog_rates/status/819006400881917954/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 799, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 1023, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 819006388206649344, 'id_str': '819006388206649344', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/media/C12x-IXVQAA08TD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12x-IXVQAA08TD.jpg', 'url': 'https://t.co/YOC1fHFCSb', 'display_url': 'pic.twitter.com/YOC1fHFCSb', 'expanded_url': 'https://twitter.com/dog_rates/status/819006400881917954/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 799, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 1023, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}, {'id': 819006388244361216, 'id_str': '819006388244361216', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/media/C12x-IgUsAAulM4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12x-IgUsAAulM4.jpg', 'url': 'https://t.co/YOC1fHFCSb', 'display_url': 'pic.twitter.com/YOC1fHFCSb', 'expanded_url': 'https://twitter.com/dog_rates/status/819006400881917954/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 683, 'resize': 'fit'}, 'small': {'w': 680, 'h': 454, 'resize': 'fit'}}}, {'id': 819006388449837058, 'id_str': '819006388449837058', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/media/C12x-JRUAAIgwdf.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12x-JRUAAIgwdf.jpg', 'url': 'https://t.co/YOC1fHFCSb', 'display_url': 'pic.twitter.com/YOC1fHFCSb', 'expanded_url': 'https://twitter.com/dog_rates/status/819006400881917954/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 760, 'h': 430, 'resize': 'fit'}, 'large': {'w': 760, 'h': 430, 'resize': 'fit'}, 'small': {'w': 680, 'h': 385, 'resize': 'fit'}}}, {'id': 819006388458299392, 'id_str': '819006388458299392', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg', 'url': 'https://t.co/YOC1fHFCSb', 'display_url': 'pic.twitter.com/YOC1fHFCSb', 'expanded_url': 'https://twitter.com/dog_rates/status/819006400881917954/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 640, 'h': 426, 'resize': 'fit'}, 'medium': {'w': 640, 'h': 426, 'resize': 'fit'}, 'large': {'w': 640, 'h': 426, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 17713, 'favorite_count': 42856, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 17713, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jan 11 02:21:57 +0000 2017', 'id': 819006400881917954, 'id_str': '819006400881917954', 'full_text': 'This is Sunny. She was also a very good First Doggo. 14/10 would also be an absolute honor to pet https://t.co/YOC1fHFCSb', 'truncated': False, 'display_text_range': [0, 97], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 819006388206649344, 'id_str': '819006388206649344', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/media/C12x-IXVQAA08TD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12x-IXVQAA08TD.jpg', 'url': 'https://t.co/YOC1fHFCSb', 'display_url': 'pic.twitter.com/YOC1fHFCSb', 'expanded_url': 'https://twitter.com/dog_rates/status/819006400881917954/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 799, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 1023, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 819006388206649344, 'id_str': '819006388206649344', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/media/C12x-IXVQAA08TD.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12x-IXVQAA08TD.jpg', 'url': 'https://t.co/YOC1fHFCSb', 'display_url': 'pic.twitter.com/YOC1fHFCSb', 'expanded_url': 'https://twitter.com/dog_rates/status/819006400881917954/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1200, 'h': 799, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 1023, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}, {'id': 819006388244361216, 'id_str': '819006388244361216', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/media/C12x-IgUsAAulM4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12x-IgUsAAulM4.jpg', 'url': 'https://t.co/YOC1fHFCSb', 'display_url': 'pic.twitter.com/YOC1fHFCSb', 'expanded_url': 'https://twitter.com/dog_rates/status/819006400881917954/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}, 'large': {'w': 1024, 'h': 683, 'resize': 'fit'}, 'small': {'w': 680, 'h': 454, 'resize': 'fit'}}}, {'id': 819006388449837058, 'id_str': '819006388449837058', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/media/C12x-JRUAAIgwdf.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12x-JRUAAIgwdf.jpg', 'url': 'https://t.co/YOC1fHFCSb', 'display_url': 'pic.twitter.com/YOC1fHFCSb', 'expanded_url': 'https://twitter.com/dog_rates/status/819006400881917954/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 760, 'h': 430, 'resize': 'fit'}, 'large': {'w': 760, 'h': 430, 'resize': 'fit'}, 'small': {'w': 680, 'h': 385, 'resize': 'fit'}}}, {'id': 819006388458299392, 'id_str': '819006388458299392', 'indices': [98, 121], 'media_url': 'http://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg', 'url': 'https://t.co/YOC1fHFCSb', 'display_url': 'pic.twitter.com/YOC1fHFCSb', 'expanded_url': 'https://twitter.com/dog_rates/status/819006400881917954/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 640, 'h': 426, 'resize': 'fit'}, 'medium': {'w': 640, 'h': 426, 'resize': 'fit'}, 'large': {'w': 640, 'h': 426, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 17713, 'favorite_count': 42856, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jan 11 02:15:36 +0000 2017', 'id': 819004803107983360, 'id_str': '819004803107983360', 'full_text': 'This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1', 'truncated': False, 'display_text_range': [0, 83], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 819004789207928832, 'id_str': '819004789207928832', 'indices': [84, 107], 'media_url': 'http://pbs.twimg.com/media/C12whDoVEAALRxa.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg', 'url': 'https://t.co/AdPKrI8BZ1', 'display_url': 'pic.twitter.com/AdPKrI8BZ1', 'expanded_url': 'https://twitter.com/dog_rates/status/819004803107983360/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 488, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 717, 'h': 1000, 'resize': 'fit'}, 'medium': {'w': 717, 'h': 1000, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 819004789207928832, 'id_str': '819004789207928832', 'indices': [84, 107], 'media_url': 'http://pbs.twimg.com/media/C12whDoVEAALRxa.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg', 'url': 'https://t.co/AdPKrI8BZ1', 'display_url': 'pic.twitter.com/AdPKrI8BZ1', 'expanded_url': 'https://twitter.com/dog_rates/status/819004803107983360/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 488, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 717, 'h': 1000, 'resize': 'fit'}, 'medium': {'w': 717, 'h': 1000, 'resize': 'fit'}}}, {'id': 819004789212098560, 'id_str': '819004789212098560', 'indices': [84, 107], 'media_url': 'http://pbs.twimg.com/media/C12whDpUsAADUcB.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12whDpUsAADUcB.jpg', 'url': 'https://t.co/AdPKrI8BZ1', 'display_url': 'pic.twitter.com/AdPKrI8BZ1', 'expanded_url': 'https://twitter.com/dog_rates/status/819004803107983360/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 948, 'h': 633, 'resize': 'fit'}, 'small': {'w': 680, 'h': 454, 'resize': 'fit'}, 'large': {'w': 948, 'h': 633, 'resize': 'fit'}}}, {'id': 819004789430198272, 'id_str': '819004789430198272', 'indices': [84, 107], 'media_url': 'http://pbs.twimg.com/media/C12whEdUoAAlszl.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12whEdUoAAlszl.jpg', 'url': 'https://t.co/AdPKrI8BZ1', 'display_url': 'pic.twitter.com/AdPKrI8BZ1', 'expanded_url': 'https://twitter.com/dog_rates/status/819004803107983360/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1432, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 475, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 839, 'h': 1200, 'resize': 'fit'}}}, {'id': 819004789430198274, 'id_str': '819004789430198274', 'indices': [84, 107], 'media_url': 'http://pbs.twimg.com/media/C12whEdUoAIo41P.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C12whEdUoAIo41P.jpg', 'url': 'https://t.co/AdPKrI8BZ1', 'display_url': 'pic.twitter.com/AdPKrI8BZ1', 'expanded_url': 'https://twitter.com/dog_rates/status/819004803107983360/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 900, 'h': 600, 'resize': 'fit'}, 'small': {'w': 680, 'h': 453, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 600, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 34393, 'favorite_count': 82359, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jan 10 02:30:30 +0000 2017', 'id': 818646164899774465, 'id_str': '818646164899774465', 'full_text': "RT @dog_rates: This is Seamus. He's very bad at entering pools. Still a very good boy tho 11/10 https://t.co/hfi264QwYM", 'truncated': False, 'display_text_range': [0, 119], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [{'url': 'https://t.co/hfi264QwYM', 'expanded_url': 'https://vine.co/v/5QWd3LZqXxd', 'display_url': 'vine.co/v/5QWd3LZqXxd', 'indices': [96, 119]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Mon Dec 12 16:16:49 +0000 2016', 'id': 808344865868283904, 'id_str': '808344865868283904', 'full_text': "This is Seamus. He's very bad at entering pools. Still a very good boy tho 11/10 https://t.co/hfi264QwYM", 'truncated': False, 'display_text_range': [0, 104], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/hfi264QwYM', 'expanded_url': 'https://vine.co/v/5QWd3LZqXxd', 'display_url': 'vine.co/v/5QWd3LZqXxd', 'indices': [81, 104]}]}, 'source': '<a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 19349, 'favorite_count': 40020, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 19349, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jan 10 01:15:10 +0000 2017', 'id': 818627210458333184, 'id_str': '818627210458333184', 'full_text': 'Meet Wafer. He represents every fiber of my being. 13/10 very good dog https://t.co/I7bkhxBxUG', 'truncated': False, 'display_text_range': [0, 70], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 818627201767710720, 'id_str': '818627201767710720', 'indices': [71, 94], 'media_url': 'http://pbs.twimg.com/media/C1xZGkzWIAA8vh4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1xZGkzWIAA8vh4.jpg', 'url': 'https://t.co/I7bkhxBxUG', 'display_url': 'pic.twitter.com/I7bkhxBxUG', 'expanded_url': 'https://twitter.com/dog_rates/status/818627210458333184/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 500, 'h': 667, 'resize': 'fit'}, 'small': {'w': 500, 'h': 667, 'resize': 'fit'}, 'medium': {'w': 500, 'h': 667, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 818627201767710720, 'id_str': '818627201767710720', 'indices': [71, 94], 'media_url': 'http://pbs.twimg.com/media/C1xZGkzWIAA8vh4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1xZGkzWIAA8vh4.jpg', 'url': 'https://t.co/I7bkhxBxUG', 'display_url': 'pic.twitter.com/I7bkhxBxUG', 'expanded_url': 'https://twitter.com/dog_rates/status/818627210458333184/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 500, 'h': 667, 'resize': 'fit'}, 'small': {'w': 500, 'h': 667, 'resize': 'fit'}, 'medium': {'w': 500, 'h': 667, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7033, 'favorite_count': 21154, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jan 10 00:24:38 +0000 2017', 'id': 818614493328580609, 'id_str': '818614493328580609', 'full_text': "This is Bear. He's a passionate believer of the outdoors. Leaves excite him. 12/10 would hug softly https://t.co/FOF0hBDxP8", 'truncated': False, 'display_text_range': [0, 99], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 818614452752760832, 'id_str': '818614452752760832', 'indices': [100, 123], 'media_url': 'http://pbs.twimg.com/media/C1xNgfBUQAAU1DW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1xNgfBUQAAU1DW.jpg', 'url': 'https://t.co/FOF0hBDxP8', 'display_url': 'pic.twitter.com/FOF0hBDxP8', 'expanded_url': 'https://twitter.com/dog_rates/status/818614493328580609/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 818614452752760832, 'id_str': '818614452752760832', 'indices': [100, 123], 'media_url': 'http://pbs.twimg.com/media/C1xNgfBUQAAU1DW.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1xNgfBUQAAU1DW.jpg', 'url': 'https://t.co/FOF0hBDxP8', 'display_url': 'pic.twitter.com/FOF0hBDxP8', 'expanded_url': 'https://twitter.com/dog_rates/status/818614493328580609/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 818614452757008384, 'id_str': '818614452757008384', 'indices': [100, 123], 'media_url': 'http://pbs.twimg.com/media/C1xNgfCVEAA6Bss.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1xNgfCVEAA6Bss.jpg', 'url': 'https://t.co/FOF0hBDxP8', 'display_url': 'pic.twitter.com/FOF0hBDxP8', 'expanded_url': 'https://twitter.com/dog_rates/status/818614493328580609/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}, {'id': 818614453927219200, 'id_str': '818614453927219200', 'indices': [100, 123], 'media_url': 'http://pbs.twimg.com/media/C1xNgjZVEAAyLbt.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1xNgjZVEAAyLbt.jpg', 'url': 'https://t.co/FOF0hBDxP8', 'display_url': 'pic.twitter.com/FOF0hBDxP8', 'expanded_url': 'https://twitter.com/dog_rates/status/818614493328580609/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1536, 'resize': 'fit'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}, 'medium': {'w': 1200, 'h': 900, 'resize': 'fit'}}}, {'id': 818614456078901248, 'id_str': '818614456078901248', 'indices': [100, 123], 'media_url': 'http://pbs.twimg.com/media/C1xNgraVIAA3EVb.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1xNgraVIAA3EVb.jpg', 'url': 'https://t.co/FOF0hBDxP8', 'display_url': 'pic.twitter.com/FOF0hBDxP8', 'expanded_url': 'https://twitter.com/dog_rates/status/818614493328580609/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2345, 'favorite_count': 9267, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jan 09 22:42:41 +0000 2017', 'id': 818588835076603904, 'id_str': '818588835076603904', 'full_text': 'RT @dog_rates: This is Chelsea. She forgot how to dog. 11/10 get it together pupper https://t.co/nBJ5RE4yHb', 'truncated': False, 'display_text_range': [0, 107], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 773547591439122432, 'id_str': '773547591439122432', 'indices': [84, 107], 'media_url': 'http://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg', 'url': 'https://t.co/nBJ5RE4yHb', 'display_url': 'pic.twitter.com/nBJ5RE4yHb', 'expanded_url': 'https://twitter.com/dog_rates/status/773547596996571136/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}, 'source_status_id': 773547596996571136, 'source_status_id_str': '773547596996571136', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 773547591439122432, 'id_str': '773547591439122432', 'indices': [84, 107], 'media_url': 'http://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg', 'url': 'https://t.co/nBJ5RE4yHb', 'display_url': 'pic.twitter.com/nBJ5RE4yHb', 'expanded_url': 'https://twitter.com/dog_rates/status/773547596996571136/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}, 'source_status_id': 773547596996571136, 'source_status_id_str': '773547596996571136', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Wed Sep 07 15:44:53 +0000 2016', 'id': 773547596996571136, 'id_str': '773547596996571136', 'full_text': 'This is Chelsea. She forgot how to dog. 11/10 get it together pupper https://t.co/nBJ5RE4yHb', 'truncated': False, 'display_text_range': [0, 68], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 773547591439122432, 'id_str': '773547591439122432', 'indices': [69, 92], 'media_url': 'http://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg', 'url': 'https://t.co/nBJ5RE4yHb', 'display_url': 'pic.twitter.com/nBJ5RE4yHb', 'expanded_url': 'https://twitter.com/dog_rates/status/773547596996571136/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 773547591439122432, 'id_str': '773547591439122432', 'indices': [69, 92], 'media_url': 'http://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg', 'url': 'https://t.co/nBJ5RE4yHb', 'display_url': 'pic.twitter.com/nBJ5RE4yHb', 'expanded_url': 'https://twitter.com/dog_rates/status/773547596996571136/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'large': {'w': 768, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 768, 'h': 1024, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 5665, 'favorite_count': 20746, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 5665, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jan 09 19:14:36 +0000 2017', 'id': 818536468981415936, 'id_str': '818536468981415936', 'full_text': "This is Tom. He's a silly dog. Known for his unconventional swing style. One h*ck of a sneaky tongue slip too. 11/10 would push https://t.co/6fSVcn9HAU", 'truncated': False, 'display_text_range': [0, 127], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 818536454431260672, 'id_str': '818536454431260672', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C1wGkYoVQAAuC_O.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1wGkYoVQAAuC_O.jpg', 'url': 'https://t.co/6fSVcn9HAU', 'display_url': 'pic.twitter.com/6fSVcn9HAU', 'expanded_url': 'https://twitter.com/dog_rates/status/818536468981415936/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 499, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1364, 'h': 1860, 'resize': 'fit'}, 'medium': {'w': 880, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 818536454431260672, 'id_str': '818536454431260672', 'indices': [128, 151], 'media_url': 'http://pbs.twimg.com/media/C1wGkYoVQAAuC_O.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1wGkYoVQAAuC_O.jpg', 'url': 'https://t.co/6fSVcn9HAU', 'display_url': 'pic.twitter.com/6fSVcn9HAU', 'expanded_url': 'https://twitter.com/dog_rates/status/818536468981415936/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 499, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1364, 'h': 1860, 'resize': 'fit'}, 'medium': {'w': 880, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2262, 'favorite_count': 10234, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jan 09 04:04:51 +0000 2017', 'id': 818307523543449600, 'id_str': '818307523543449600', 'full_text': "RT @dog_rates: Meet Moose. He doesn't want his friend to go back to college. 13/10 looks like you're staying home John https://t.co/LIhmM7i…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Wed Jan 04 01:05:59 +0000 2017', 'id': 816450570814898180, 'id_str': '816450570814898180', 'full_text': "Meet Moose. He doesn't want his friend to go back to college. 13/10 looks like you're staying home John https://t.co/LIhmM7i70k", 'truncated': False, 'display_text_range': [0, 103], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 816450564926164996, 'id_str': '816450564926164996', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg', 'url': 'https://t.co/LIhmM7i70k', 'display_url': 'pic.twitter.com/LIhmM7i70k', 'expanded_url': 'https://twitter.com/dog_rates/status/816450570814898180/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 618, 'h': 243, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 618, 'h': 243, 'resize': 'fit'}, 'medium': {'w': 618, 'h': 243, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 816450564926164996, 'id_str': '816450564926164996', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg', 'url': 'https://t.co/LIhmM7i70k', 'display_url': 'pic.twitter.com/LIhmM7i70k', 'expanded_url': 'https://twitter.com/dog_rates/status/816450570814898180/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 618, 'h': 243, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 618, 'h': 243, 'resize': 'fit'}, 'medium': {'w': 618, 'h': 243, 'resize': 'fit'}}}, {'id': 816450565198741505, 'id_str': '816450565198741505', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C1SddptWgAExv11.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1SddptWgAExv11.jpg', 'url': 'https://t.co/LIhmM7i70k', 'display_url': 'pic.twitter.com/LIhmM7i70k', 'expanded_url': 'https://twitter.com/dog_rates/status/816450570814898180/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7416, 'favorite_count': 28553, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 7416, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Mon Jan 09 00:53:55 +0000 2017', 'id': 818259473185828864, 'id_str': '818259473185828864', 'full_text': 'This is Florence. He saw the same snap you sent him on your story. Pretty pupset with you. 12/10 https://t.co/rnkvT2kvib', 'truncated': False, 'display_text_range': [0, 96], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 818259456588812288, 'id_str': '818259456588812288', 'indices': [97, 120], 'media_url': 'http://pbs.twimg.com/media/C1sKo_QUkAALtkw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1sKo_QUkAALtkw.jpg', 'url': 'https://t.co/rnkvT2kvib', 'display_url': 'pic.twitter.com/rnkvT2kvib', 'expanded_url': 'https://twitter.com/dog_rates/status/818259473185828864/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1639, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 818259456588812288, 'id_str': '818259456588812288', 'indices': [97, 120], 'media_url': 'http://pbs.twimg.com/media/C1sKo_QUkAALtkw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1sKo_QUkAALtkw.jpg', 'url': 'https://t.co/rnkvT2kvib', 'display_url': 'pic.twitter.com/rnkvT2kvib', 'expanded_url': 'https://twitter.com/dog_rates/status/818259473185828864/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1639, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 544, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 960, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2070, 'favorite_count': 10375, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jan 08 17:20:31 +0000 2017', 'id': 818145370475810820, 'id_str': '818145370475810820', 'full_text': 'This is Autumn. Her favorite toy is a cheeseburger. She takes it everywhere. 11/10 https://t.co/JlPug12E5Z', 'truncated': False, 'display_text_range': [0, 82], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 818145346668916739, 'id_str': '818145346668916739', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/media/C1qi26rW8AMaj9K.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1qi26rW8AMaj9K.jpg', 'url': 'https://t.co/JlPug12E5Z', 'display_url': 'pic.twitter.com/JlPug12E5Z', 'expanded_url': 'https://twitter.com/dog_rates/status/818145370475810820/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 898, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1532, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 509, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 818145346668916739, 'id_str': '818145346668916739', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/media/C1qi26rW8AMaj9K.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1qi26rW8AMaj9K.jpg', 'url': 'https://t.co/JlPug12E5Z', 'display_url': 'pic.twitter.com/JlPug12E5Z', 'expanded_url': 'https://twitter.com/dog_rates/status/818145370475810820/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 898, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1532, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 509, 'h': 680, 'resize': 'fit'}}}, {'id': 818145346652143618, 'id_str': '818145346652143618', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/media/C1qi26nXAAIKTok.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1qi26nXAAIKTok.jpg', 'url': 'https://t.co/JlPug12E5Z', 'display_url': 'pic.twitter.com/JlPug12E5Z', 'expanded_url': 'https://twitter.com/dog_rates/status/818145370475810820/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 818145346656370688, 'id_str': '818145346656370688', 'indices': [83, 106], 'media_url': 'http://pbs.twimg.com/media/C1qi26oXgAAvTkL.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1qi26oXgAAvTkL.jpg', 'url': 'https://t.co/JlPug12E5Z', 'display_url': 'pic.twitter.com/JlPug12E5Z', 'expanded_url': 'https://twitter.com/dog_rates/status/818145370475810820/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2358, 'favorite_count': 11574, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sun Jan 08 01:40:55 +0000 2017', 'id': 817908911860748288, 'id_str': '817908911860748288', 'full_text': 'Looks like he went cross-eyed trying way too hard to use the force. 12/10 \nhttps://t.co/bbuKxk0fM8', 'truncated': False, 'display_text_range': [0, 98], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/bbuKxk0fM8', 'expanded_url': 'https://twitter.com/micahgrimes/status/817902080979599361', 'display_url': 'twitter.com/micahgrimes/st…', 'indices': [75, 98]}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': True, 'quoted_status_id': 817902080979599361, 'quoted_status_id_str': '817902080979599361', 'quoted_status_permalink': {'url': 'https://t.co/bbuKxk0fM8', 'expanded': 'https://twitter.com/micahgrimes/status/817902080979599361', 'display': 'twitter.com/micahgrimes/st…'}, 'quoted_status': {'created_at': 'Sun Jan 08 01:13:46 +0000 2017', 'id': 817902080979599361, 'id_str': '817902080979599361', 'full_text': 'OMG, look at this awesome cross-eyed dog up for adoption in Florida. https://t.co/CGLfpD2SrQ https://t.co/SdIh7AtnDz', 'truncated': False, 'display_text_range': [0, 92], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/CGLfpD2SrQ', 'expanded_url': 'https://www.facebook.com/james.mccook.47/posts/1689945714364415', 'display_url': 'facebook.com/james.mccook.4…', 'indices': [69, 92]}], 'media': [{'id': 817902075942240256, 'id_str': '817902075942240256', 'indices': [93, 116], 'media_url': 'http://pbs.twimg.com/media/C1nFmsmXgAAiCDk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1nFmsmXgAAiCDk.jpg', 'url': 'https://t.co/SdIh7AtnDz', 'display_url': 'pic.twitter.com/SdIh7AtnDz', 'expanded_url': 'https://twitter.com/MicahGrimes/status/817902080979599361/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 663, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 702, 'h': 720, 'resize': 'fit'}, 'large': {'w': 702, 'h': 720, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 817902075942240256, 'id_str': '817902075942240256', 'indices': [93, 116], 'media_url': 'http://pbs.twimg.com/media/C1nFmsmXgAAiCDk.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1nFmsmXgAAiCDk.jpg', 'url': 'https://t.co/SdIh7AtnDz', 'display_url': 'pic.twitter.com/SdIh7AtnDz', 'expanded_url': 'https://twitter.com/MicahGrimes/status/817902080979599361/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 663, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 702, 'h': 720, 'resize': 'fit'}, 'large': {'w': 702, 'h': 720, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 67958182, 'id_str': '67958182', 'name': 'Micah Grimes', 'screen_name': 'MicahGrimes', 'location': 'Austin, Texas', 'description': 'SVP, Content at @atmosphere_tv | Former: Head of Social, @NBCNews & @MSNBC + stops at @nbcnightlynews, @ABC, @ABCActionNews, @BN9 & @WSFA12news.', 'url': 'https://t.co/UdZ9wOXRGc', 'entities': {'url': {'urls': [{'url': 'https://t.co/UdZ9wOXRGc', 'expanded_url': 'https://atmosphere.tv/channels/atmosphere-news', 'display_url': 'atmosphere.tv/channels/atmos…', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 26096, 'friends_count': 4604, 'listed_count': 922, 'created_at': 'Sat Aug 22 19:07:05 +0000 2009', 'favourites_count': 11789, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 115520, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': 'C0DEED', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1569051223419912194/nRXw29fO_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1569051223419912194/nRXw29fO_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/67958182/1660830598', 'profile_link_color': '1DA1F2', 'profile_sidebar_border_color': 'C0DEED', 'profile_sidebar_fill_color': 'DDEEF6', 'profile_text_color': '333333', 'profile_use_background_image': True, 'has_extended_profile': False, 'default_profile': True, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'regular', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 731, 'favorite_count': 3579, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'retweet_count': 737, 'favorite_count': 4591, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jan 07 20:18:46 +0000 2017', 'id': 817827839487737858, 'id_str': '817827839487737858', 'full_text': "This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https://t.co/q2BgNIi3OA", 'truncated': False, 'display_text_range': [0, 116], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 817827663108771841, 'id_str': '817827663108771841', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/817827663108771841/pu/img/e9oi839RGWJR37jF.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/817827663108771841/pu/img/e9oi839RGWJR37jF.jpg', 'url': 'https://t.co/q2BgNIi3OA', 'display_url': 'pic.twitter.com/q2BgNIi3OA', 'expanded_url': 'https://twitter.com/dog_rates/status/817827839487737858/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 406, 'h': 720, 'resize': 'fit'}, 'large': {'w': 406, 'h': 720, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 817827663108771841, 'id_str': '817827663108771841', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/817827663108771841/pu/img/e9oi839RGWJR37jF.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/817827663108771841/pu/img/e9oi839RGWJR37jF.jpg', 'url': 'https://t.co/q2BgNIi3OA', 'display_url': 'pic.twitter.com/q2BgNIi3OA', 'expanded_url': 'https://twitter.com/dog_rates/status/817827839487737858/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 406, 'h': 720, 'resize': 'fit'}, 'large': {'w': 406, 'h': 720, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [203, 360], 'duration_millis': 63167, 'variants': [{'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/817827663108771841/pu/vid/180x320/IrfbBqsst8qEXxNG.mp4'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/817827663108771841/pu/vid/360x640/O3a0D7xslG80E2QM.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/817827663108771841/pu/pl/0ec0OHgwuDKE45Wv.m3u8'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 24990, 'favorite_count': 48397, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jan 07 16:59:28 +0000 2017', 'id': 817777686764523521, 'id_str': '817777686764523521', 'full_text': 'This is Dido. She\'s playing the lead role in "Pupper Stops to Catch Snow Before Resuming Shadow Box with Dried Apple." 13/10 (IG: didodoggo) https://t.co/m7isZrOBX7', 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 817777588030476288, 'id_str': '817777588030476288', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/817777588030476288/pu/img/KbuLpE4krHF4VdPf.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/817777588030476288/pu/img/KbuLpE4krHF4VdPf.jpg', 'url': 'https://t.co/m7isZrOBX7', 'display_url': 'pic.twitter.com/m7isZrOBX7', 'expanded_url': 'https://twitter.com/dog_rates/status/817777686764523521/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 384, 'h': 480, 'resize': 'fit'}, 'small': {'w': 384, 'h': 480, 'resize': 'fit'}, 'large': {'w': 384, 'h': 480, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 817777588030476288, 'id_str': '817777588030476288', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/817777588030476288/pu/img/KbuLpE4krHF4VdPf.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/817777588030476288/pu/img/KbuLpE4krHF4VdPf.jpg', 'url': 'https://t.co/m7isZrOBX7', 'display_url': 'pic.twitter.com/m7isZrOBX7', 'expanded_url': 'https://twitter.com/dog_rates/status/817777686764523521/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 384, 'h': 480, 'resize': 'fit'}, 'small': {'w': 384, 'h': 480, 'resize': 'fit'}, 'large': {'w': 384, 'h': 480, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [4, 5], 'duration_millis': 45030, 'variants': [{'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/817777588030476288/pu/vid/256x320/k3rN1SZVoTvIG8iz.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/817777588030476288/pu/pl/IElDkG2nvol7sRFM.m3u8'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2512, 'favorite_count': 10183, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Sat Jan 07 01:00:41 +0000 2017', 'id': 817536400337801217, 'id_str': '817536400337801217', 'full_text': 'Say hello to Eugene &amp; Patti Melt. No matter how dysfunctional they get, they will never top their owners. Both 12/10 would pet at same time https://t.co/jQUdvtdYMu', 'truncated': False, 'display_text_range': [0, 143], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 817536359321714688, 'id_str': '817536359321714688', 'indices': [144, 167], 'media_url': 'http://pbs.twimg.com/media/C1h4_MBWQAAKtq4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1h4_MBWQAAKtq4.jpg', 'url': 'https://t.co/jQUdvtdYMu', 'display_url': 'pic.twitter.com/jQUdvtdYMu', 'expanded_url': 'https://twitter.com/dog_rates/status/817536400337801217/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 817536359321714688, 'id_str': '817536359321714688', 'indices': [144, 167], 'media_url': 'http://pbs.twimg.com/media/C1h4_MBWQAAKtq4.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1h4_MBWQAAKtq4.jpg', 'url': 'https://t.co/jQUdvtdYMu', 'display_url': 'pic.twitter.com/jQUdvtdYMu', 'expanded_url': 'https://twitter.com/dog_rates/status/817536400337801217/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 817536359334367232, 'id_str': '817536359334367232', 'indices': [144, 167], 'media_url': 'http://pbs.twimg.com/media/C1h4_MEXUAARxQF.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1h4_MEXUAARxQF.jpg', 'url': 'https://t.co/jQUdvtdYMu', 'display_url': 'pic.twitter.com/jQUdvtdYMu', 'expanded_url': 'https://twitter.com/dog_rates/status/817536400337801217/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 817536359321796608, 'id_str': '817536359321796608', 'indices': [144, 167], 'media_url': 'http://pbs.twimg.com/media/C1h4_MBXgAAT2q3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1h4_MBXgAAT2q3.jpg', 'url': 'https://t.co/jQUdvtdYMu', 'display_url': 'pic.twitter.com/jQUdvtdYMu', 'expanded_url': 'https://twitter.com/dog_rates/status/817536400337801217/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 817536359325954052, 'id_str': '817536359325954052', 'indices': [144, 167], 'media_url': 'http://pbs.twimg.com/media/C1h4_MCW8AQ9s_p.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1h4_MCW8AQ9s_p.jpg', 'url': 'https://t.co/jQUdvtdYMu', 'display_url': 'pic.twitter.com/jQUdvtdYMu', 'expanded_url': 'https://twitter.com/dog_rates/status/817536400337801217/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2717, 'favorite_count': 11076, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jan 06 22:45:43 +0000 2017', 'id': 817502432452313088, 'id_str': '817502432452313088', 'full_text': "RT @dog_rates: Meet Herschel. He's slightly bigger than ur average pupper. Looks lonely. Could probably ride 7/10 would totally pet https:/…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Wed Jan 27 18:42:06 +0000 2016', 'id': 692417313023332352, 'id_str': '692417313023332352', 'full_text': "Meet Herschel. He's slightly bigger than ur average pupper. Looks lonely. Could probably ride 7/10 would totally pet https://t.co/VGaIMktX10", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 692417305561686016, 'id_str': '692417305561686016', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/media/CZv13u5WYAA6wQe.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CZv13u5WYAA6wQe.jpg', 'url': 'https://t.co/VGaIMktX10', 'display_url': 'pic.twitter.com/VGaIMktX10', 'expanded_url': 'https://twitter.com/dog_rates/status/692417313023332352/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 540, 'h': 963, 'resize': 'fit'}, 'medium': {'w': 540, 'h': 963, 'resize': 'fit'}, 'small': {'w': 381, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 692417305561686016, 'id_str': '692417305561686016', 'indices': [117, 140], 'media_url': 'http://pbs.twimg.com/media/CZv13u5WYAA6wQe.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CZv13u5WYAA6wQe.jpg', 'url': 'https://t.co/VGaIMktX10', 'display_url': 'pic.twitter.com/VGaIMktX10', 'expanded_url': 'https://twitter.com/dog_rates/status/692417313023332352/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 540, 'h': 963, 'resize': 'fit'}, 'medium': {'w': 540, 'h': 963, 'resize': 'fit'}, 'small': {'w': 381, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 3131, 'favorite_count': 8633, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 3131, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Fri Jan 06 17:33:29 +0000 2017', 'id': 817423860136083457, 'id_str': '817423860136083457', 'full_text': 'This is Ken. His cheeks are magic. 13/10 (IG: ken_shiba) https://t.co/btzf1zTDeQ', 'truncated': False, 'display_text_range': [0, 56], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 817423809049493505, 'id_str': '817423809049493505', 'indices': [57, 80], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg', 'url': 'https://t.co/btzf1zTDeQ', 'display_url': 'pic.twitter.com/btzf1zTDeQ', 'expanded_url': 'https://twitter.com/dog_rates/status/817423860136083457/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 720, 'resize': 'fit'}, 'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 817423809049493505, 'id_str': '817423809049493505', 'indices': [57, 80], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg', 'url': 'https://t.co/btzf1zTDeQ', 'display_url': 'pic.twitter.com/btzf1zTDeQ', 'expanded_url': 'https://twitter.com/dog_rates/status/817423860136083457/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 720, 'h': 720, 'resize': 'fit'}, 'large': {'w': 720, 'h': 720, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [1, 1], 'duration_millis': 12079, 'variants': [{'bitrate': 1280000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/817423809049493505/pu/vid/720x720/I9zru8euq3KyMtPW.mp4'}, {'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/817423809049493505/pu/pl/pjux09oIx4_Pqa3X.m3u8'}, {'bitrate': 832000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/817423809049493505/pu/vid/480x480/dHYYdvXMlZuCCtRJ.mp4'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/817423809049493505/pu/vid/240x240/J33-HErqMVqpUn6L.mp4'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 13520, 'favorite_count': 31710, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jan 06 17:00:38 +0000 2017', 'id': 817415592588222464, 'id_str': '817415592588222464', 'full_text': "Meet Strudel. He's rather h*ckin pupset that your clothes clash. 11/10 click the link to see how u can help Strudel\n\nhttps://t.co/3uxgLz8d0l https://t.co/O0ECL1StB2", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/3uxgLz8d0l', 'expanded_url': 'https://www.gofundme.com/help-strudel-walk-again?rcid=ec2be8b6f825461f8ee0fd5dcdf43fea', 'display_url': 'gofundme.com/help-strudel-w…', 'indices': [117, 140]}], 'media': [{'id': 817415587425058816, 'id_str': '817415587425058816', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C1gLJVpWgAApI3r.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1gLJVpWgAApI3r.jpg', 'url': 'https://t.co/O0ECL1StB2', 'display_url': 'pic.twitter.com/O0ECL1StB2', 'expanded_url': 'https://twitter.com/dog_rates/status/817415592588222464/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 720, 'h': 540, 'resize': 'fit'}, 'large': {'w': 720, 'h': 540, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 817415587425058816, 'id_str': '817415587425058816', 'indices': [141, 164], 'media_url': 'http://pbs.twimg.com/media/C1gLJVpWgAApI3r.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1gLJVpWgAApI3r.jpg', 'url': 'https://t.co/O0ECL1StB2', 'display_url': 'pic.twitter.com/O0ECL1StB2', 'expanded_url': 'https://twitter.com/dog_rates/status/817415592588222464/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 720, 'h': 540, 'resize': 'fit'}, 'large': {'w': 720, 'h': 540, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 680, 'h': 510, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 885, 'favorite_count': 5277, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jan 06 01:31:47 +0000 2017', 'id': 817181837579653120, 'id_str': '817181837579653120', 'full_text': "RT @dog_rates: Here's a pupper with squeaky hiccups. Please enjoy. 13/10 https://t.co/MiMKtsLN6k", 'truncated': False, 'display_text_range': [0, 96], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 815965888126062592, 'id_str': '815965888126062592', 'indices': [73, 96], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/815965888126062592/pu/img/JleSw4wRhgKDWQj5.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/815965888126062592/pu/img/JleSw4wRhgKDWQj5.jpg', 'url': 'https://t.co/MiMKtsLN6k', 'display_url': 'pic.twitter.com/MiMKtsLN6k', 'expanded_url': 'https://twitter.com/dog_rates/status/815966073409433600/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 568, 'h': 320, 'resize': 'fit'}, 'large': {'w': 568, 'h': 320, 'resize': 'fit'}, 'small': {'w': 568, 'h': 320, 'resize': 'fit'}}, 'source_status_id': 815966073409433600, 'source_status_id_str': '815966073409433600', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 815965888126062592, 'id_str': '815965888126062592', 'indices': [73, 96], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/815965888126062592/pu/img/JleSw4wRhgKDWQj5.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/815965888126062592/pu/img/JleSw4wRhgKDWQj5.jpg', 'url': 'https://t.co/MiMKtsLN6k', 'display_url': 'pic.twitter.com/MiMKtsLN6k', 'expanded_url': 'https://twitter.com/dog_rates/status/815966073409433600/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 568, 'h': 320, 'resize': 'fit'}, 'large': {'w': 568, 'h': 320, 'resize': 'fit'}, 'small': {'w': 568, 'h': 320, 'resize': 'fit'}}, 'source_status_id': 815966073409433600, 'source_status_id_str': '815966073409433600', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835', 'video_info': {'aspect_ratio': [71, 40], 'duration_millis': 14933, 'variants': [{'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/815965888126062592/pu/pl/_HKfIcEFLAA4vJZb.m3u8'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/815965888126062592/pu/vid/318x180/pcQ7LVEhPzXZ8_7p.mp4'}]}, 'additional_media_info': {'monetizable': False, 'source_user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Mon Jan 02 17:00:46 +0000 2017', 'id': 815966073409433600, 'id_str': '815966073409433600', 'full_text': "Here's a pupper with squeaky hiccups. Please enjoy. 13/10 https://t.co/MiMKtsLN6k", 'truncated': False, 'display_text_range': [0, 57], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 815965888126062592, 'id_str': '815965888126062592', 'indices': [58, 81], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/815965888126062592/pu/img/JleSw4wRhgKDWQj5.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/815965888126062592/pu/img/JleSw4wRhgKDWQj5.jpg', 'url': 'https://t.co/MiMKtsLN6k', 'display_url': 'pic.twitter.com/MiMKtsLN6k', 'expanded_url': 'https://twitter.com/dog_rates/status/815966073409433600/video/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 568, 'h': 320, 'resize': 'fit'}, 'large': {'w': 568, 'h': 320, 'resize': 'fit'}, 'small': {'w': 568, 'h': 320, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 815965888126062592, 'id_str': '815965888126062592', 'indices': [58, 81], 'media_url': 'http://pbs.twimg.com/ext_tw_video_thumb/815965888126062592/pu/img/JleSw4wRhgKDWQj5.jpg', 'media_url_https': 'https://pbs.twimg.com/ext_tw_video_thumb/815965888126062592/pu/img/JleSw4wRhgKDWQj5.jpg', 'url': 'https://t.co/MiMKtsLN6k', 'display_url': 'pic.twitter.com/MiMKtsLN6k', 'expanded_url': 'https://twitter.com/dog_rates/status/815966073409433600/video/1', 'type': 'video', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 568, 'h': 320, 'resize': 'fit'}, 'large': {'w': 568, 'h': 320, 'resize': 'fit'}, 'small': {'w': 568, 'h': 320, 'resize': 'fit'}}, 'video_info': {'aspect_ratio': [71, 40], 'duration_millis': 14933, 'variants': [{'content_type': 'application/x-mpegURL', 'url': 'https://video.twimg.com/ext_tw_video/815965888126062592/pu/pl/_HKfIcEFLAA4vJZb.m3u8'}, {'bitrate': 256000, 'content_type': 'video/mp4', 'url': 'https://video.twimg.com/ext_tw_video/815965888126062592/pu/vid/318x180/pcQ7LVEhPzXZ8_7p.mp4'}]}, 'additional_media_info': {'monetizable': False}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7830, 'favorite_count': 21049, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 7830, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Fri Jan 06 00:49:53 +0000 2017', 'id': 817171292965273600, 'id_str': '817171292965273600', 'full_text': 'This is Tebow. He kindly requests that you put down the coffee and play with him. 13/10 such a good boy https://t.co/56uBP28eqw', 'truncated': False, 'display_text_range': [0, 103], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 817171279044313089, 'id_str': '817171279044313089', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C1cs8uAWgAEwbXc.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1cs8uAWgAEwbXc.jpg', 'url': 'https://t.co/56uBP28eqw', 'display_url': 'pic.twitter.com/56uBP28eqw', 'expanded_url': 'https://twitter.com/dog_rates/status/817171292965273600/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 782, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1334, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 443, 'h': 680, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 817171279044313089, 'id_str': '817171279044313089', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C1cs8uAWgAEwbXc.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1cs8uAWgAEwbXc.jpg', 'url': 'https://t.co/56uBP28eqw', 'display_url': 'pic.twitter.com/56uBP28eqw', 'expanded_url': 'https://twitter.com/dog_rates/status/817171292965273600/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 782, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1334, 'h': 2048, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 443, 'h': 680, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1856, 'favorite_count': 8275, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jan 05 21:29:55 +0000 2017', 'id': 817120970343411712, 'id_str': '817120970343411712', 'full_text': "Name a more iconic quartet... I'll wait. 13/10 for all https://t.co/kCLgD8687T", 'truncated': False, 'display_text_range': [0, 54], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 817120951791824896, 'id_str': '817120951791824896', 'indices': [55, 78], 'media_url': 'http://pbs.twimg.com/media/C1b_LSYUsAAJ494.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1b_LSYUsAAJ494.jpg', 'url': 'https://t.co/kCLgD8687T', 'display_url': 'pic.twitter.com/kCLgD8687T', 'expanded_url': 'https://twitter.com/dog_rates/status/817120970343411712/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 898, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1532, 'resize': 'fit'}, 'small': {'w': 680, 'h': 509, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 817120951791824896, 'id_str': '817120951791824896', 'indices': [55, 78], 'media_url': 'http://pbs.twimg.com/media/C1b_LSYUsAAJ494.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1b_LSYUsAAJ494.jpg', 'url': 'https://t.co/kCLgD8687T', 'display_url': 'pic.twitter.com/kCLgD8687T', 'expanded_url': 'https://twitter.com/dog_rates/status/817120970343411712/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 1200, 'h': 898, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 2048, 'h': 1532, 'resize': 'fit'}, 'small': {'w': 680, 'h': 509, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2403, 'favorite_count': 11499, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jan 05 17:13:55 +0000 2017', 'id': 817056546584727552, 'id_str': '817056546584727552', 'full_text': 'This is Chloe. She fell asleep at the wheel. Absolute menace on the roadways. Sneaky tongue slip tho. 11/10 https://t.co/r6SLVN2VUH', 'truncated': False, 'display_text_range': [0, 107], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 817056537596207104, 'id_str': '817056537596207104', 'indices': [108, 131], 'media_url': 'http://pbs.twimg.com/media/C1bEl4zVIAASj7_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1bEl4zVIAASj7_.jpg', 'url': 'https://t.co/r6SLVN2VUH', 'display_url': 'pic.twitter.com/r6SLVN2VUH', 'expanded_url': 'https://twitter.com/dog_rates/status/817056546584727552/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 469, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 827, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1412, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 817056537596207104, 'id_str': '817056537596207104', 'indices': [108, 131], 'media_url': 'http://pbs.twimg.com/media/C1bEl4zVIAASj7_.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1bEl4zVIAASj7_.jpg', 'url': 'https://t.co/r6SLVN2VUH', 'display_url': 'pic.twitter.com/r6SLVN2VUH', 'expanded_url': 'https://twitter.com/dog_rates/status/817056546584727552/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 469, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 827, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1412, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1509, 'favorite_count': 8104, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jan 05 02:09:53 +0000 2017', 'id': 816829038950027264, 'id_str': '816829038950027264', 'full_text': "RT @dog_rates: This is Betty. She's assisting with the dishes. Such a good puppo. 12/10 h*ckin helpful af https://t.co/dgvTPZ9tgI", 'truncated': False, 'display_text_range': [0, 129], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 790946047744966656, 'id_str': '790946047744966656', 'indices': [106, 129], 'media_url': 'http://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg', 'url': 'https://t.co/dgvTPZ9tgI', 'display_url': 'pic.twitter.com/dgvTPZ9tgI', 'expanded_url': 'https://twitter.com/dog_rates/status/790946055508652032/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 576, 'h': 576, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 576, 'h': 576, 'resize': 'fit'}, 'small': {'w': 576, 'h': 576, 'resize': 'fit'}}, 'source_status_id': 790946055508652032, 'source_status_id_str': '790946055508652032', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 790946047744966656, 'id_str': '790946047744966656', 'indices': [106, 129], 'media_url': 'http://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg', 'url': 'https://t.co/dgvTPZ9tgI', 'display_url': 'pic.twitter.com/dgvTPZ9tgI', 'expanded_url': 'https://twitter.com/dog_rates/status/790946055508652032/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 576, 'h': 576, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 576, 'h': 576, 'resize': 'fit'}, 'small': {'w': 576, 'h': 576, 'resize': 'fit'}}, 'source_status_id': 790946055508652032, 'source_status_id_str': '790946055508652032', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Tue Oct 25 16:00:09 +0000 2016', 'id': 790946055508652032, 'id_str': '790946055508652032', 'full_text': "This is Betty. She's assisting with the dishes. Such a good puppo. 12/10 h*ckin helpful af https://t.co/dgvTPZ9tgI", 'truncated': False, 'display_text_range': [0, 90], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 790946047744966656, 'id_str': '790946047744966656', 'indices': [91, 114], 'media_url': 'http://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg', 'url': 'https://t.co/dgvTPZ9tgI', 'display_url': 'pic.twitter.com/dgvTPZ9tgI', 'expanded_url': 'https://twitter.com/dog_rates/status/790946055508652032/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 576, 'h': 576, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 576, 'h': 576, 'resize': 'fit'}, 'small': {'w': 576, 'h': 576, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 790946047744966656, 'id_str': '790946047744966656', 'indices': [91, 114], 'media_url': 'http://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg', 'url': 'https://t.co/dgvTPZ9tgI', 'display_url': 'pic.twitter.com/dgvTPZ9tgI', 'expanded_url': 'https://twitter.com/dog_rates/status/790946055508652032/photo/1', 'type': 'photo', 'sizes': {'medium': {'w': 576, 'h': 576, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 576, 'h': 576, 'resize': 'fit'}, 'small': {'w': 576, 'h': 576, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4370, 'favorite_count': 15816, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 4370, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Thu Jan 05 01:20:46 +0000 2017', 'id': 816816676327063552, 'id_str': '816816676327063552', 'full_text': 'This is Timber. He misses Christmas. Specifically the presents part. 12/10 cheer pup Timber https://t.co/dVVavqpeF9', 'truncated': False, 'display_text_range': [0, 91], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 816816665971347457, 'id_str': '816816665971347457', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/media/C1XqbhXXUAElpfI.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1XqbhXXUAElpfI.jpg', 'url': 'https://t.co/dVVavqpeF9', 'display_url': 'pic.twitter.com/dVVavqpeF9', 'expanded_url': 'https://twitter.com/dog_rates/status/816816676327063552/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 816816665971347457, 'id_str': '816816665971347457', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/media/C1XqbhXXUAElpfI.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1XqbhXXUAElpfI.jpg', 'url': 'https://t.co/dVVavqpeF9', 'display_url': 'pic.twitter.com/dVVavqpeF9', 'expanded_url': 'https://twitter.com/dog_rates/status/816816676327063552/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1884, 'favorite_count': 9441, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jan 04 17:27:59 +0000 2017', 'id': 816697700272001025, 'id_str': '816697700272001025', 'full_text': 'This is Binky. She appears to be rather h*ckin cozy. Nifty leg cross as well. 12/10 would snug well https://t.co/WFt82XLyEF', 'truncated': False, 'display_text_range': [0, 99], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 816697633502658561, 'id_str': '816697633502658561', 'indices': [100, 123], 'media_url': 'http://pbs.twimg.com/media/C1V-K63UAAEUHqw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1V-K63UAAEUHqw.jpg', 'url': 'https://t.co/WFt82XLyEF', 'display_url': 'pic.twitter.com/WFt82XLyEF', 'expanded_url': 'https://twitter.com/dog_rates/status/816697700272001025/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 816697633502658561, 'id_str': '816697633502658561', 'indices': [100, 123], 'media_url': 'http://pbs.twimg.com/media/C1V-K63UAAEUHqw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1V-K63UAAEUHqw.jpg', 'url': 'https://t.co/WFt82XLyEF', 'display_url': 'pic.twitter.com/WFt82XLyEF', 'expanded_url': 'https://twitter.com/dog_rates/status/816697700272001025/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 816697633502695425, 'id_str': '816697633502695425', 'indices': [100, 123], 'media_url': 'http://pbs.twimg.com/media/C1V-K63UkAECmzH.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1V-K63UkAECmzH.jpg', 'url': 'https://t.co/WFt82XLyEF', 'display_url': 'pic.twitter.com/WFt82XLyEF', 'expanded_url': 'https://twitter.com/dog_rates/status/816697700272001025/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 2044, 'favorite_count': 9208, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Wed Jan 04 01:05:59 +0000 2017', 'id': 816450570814898180, 'id_str': '816450570814898180', 'full_text': "Meet Moose. He doesn't want his friend to go back to college. 13/10 looks like you're staying home John https://t.co/LIhmM7i70k", 'truncated': False, 'display_text_range': [0, 103], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 816450564926164996, 'id_str': '816450564926164996', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg', 'url': 'https://t.co/LIhmM7i70k', 'display_url': 'pic.twitter.com/LIhmM7i70k', 'expanded_url': 'https://twitter.com/dog_rates/status/816450570814898180/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 618, 'h': 243, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 618, 'h': 243, 'resize': 'fit'}, 'medium': {'w': 618, 'h': 243, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 816450564926164996, 'id_str': '816450564926164996', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg', 'url': 'https://t.co/LIhmM7i70k', 'display_url': 'pic.twitter.com/LIhmM7i70k', 'expanded_url': 'https://twitter.com/dog_rates/status/816450570814898180/photo/1', 'type': 'photo', 'sizes': {'large': {'w': 618, 'h': 243, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 618, 'h': 243, 'resize': 'fit'}, 'medium': {'w': 618, 'h': 243, 'resize': 'fit'}}}, {'id': 816450565198741505, 'id_str': '816450565198741505', 'indices': [104, 127], 'media_url': 'http://pbs.twimg.com/media/C1SddptWgAExv11.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1SddptWgAExv11.jpg', 'url': 'https://t.co/LIhmM7i70k', 'display_url': 'pic.twitter.com/LIhmM7i70k', 'expanded_url': 'https://twitter.com/dog_rates/status/816450570814898180/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 7416, 'favorite_count': 28553, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jan 03 17:33:39 +0000 2017', 'id': 816336735214911488, 'id_str': '816336735214911488', 'full_text': "This is Dudley. He found a flower and now he's a queen. 11/10 would be an honor to pet https://t.co/nuJxtmlLcY", 'truncated': False, 'display_text_range': [0, 86], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 816336726218117120, 'id_str': '816336726218117120', 'indices': [87, 110], 'media_url': 'http://pbs.twimg.com/media/C1Q17WdWEAAjKFO.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1Q17WdWEAAjKFO.jpg', 'url': 'https://t.co/nuJxtmlLcY', 'display_url': 'pic.twitter.com/nuJxtmlLcY', 'expanded_url': 'https://twitter.com/dog_rates/status/816336735214911488/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 816336726218117120, 'id_str': '816336726218117120', 'indices': [87, 110], 'media_url': 'http://pbs.twimg.com/media/C1Q17WdWEAAjKFO.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1Q17WdWEAAjKFO.jpg', 'url': 'https://t.co/nuJxtmlLcY', 'display_url': 'pic.twitter.com/nuJxtmlLcY', 'expanded_url': 'https://twitter.com/dog_rates/status/816336735214911488/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1793, 'favorite_count': 8142, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Tue Jan 03 01:20:49 +0000 2017', 'id': 816091915477250048, 'id_str': '816091915477250048', 'full_text': "This is Comet. He's a Wild Estonian Poofer. Surprised they caught him. 12/10 would pet well https://t.co/tlfuZ25IMi", 'truncated': False, 'display_text_range': [0, 91], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 816091903011725312, 'id_str': '816091903011725312', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/media/C1NXQw8WIAAXQaK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1NXQw8WIAAXQaK.jpg', 'url': 'https://t.co/tlfuZ25IMi', 'display_url': 'pic.twitter.com/tlfuZ25IMi', 'expanded_url': 'https://twitter.com/dog_rates/status/816091915477250048/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 816091903011725312, 'id_str': '816091903011725312', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/media/C1NXQw8WIAAXQaK.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1NXQw8WIAAXQaK.jpg', 'url': 'https://t.co/tlfuZ25IMi', 'display_url': 'pic.twitter.com/tlfuZ25IMi', 'expanded_url': 'https://twitter.com/dog_rates/status/816091915477250048/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}, {'id': 816091903443734529, 'id_str': '816091903443734529', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/media/C1NXQyjWEAElsF5.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1NXQyjWEAElsF5.jpg', 'url': 'https://t.co/tlfuZ25IMi', 'display_url': 'pic.twitter.com/tlfuZ25IMi', 'expanded_url': 'https://twitter.com/dog_rates/status/816091915477250048/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}}}, {'id': 816091905499025409, 'id_str': '816091905499025409', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/media/C1NXQ6NXUAEAxIQ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1NXQ6NXUAEAxIQ.jpg', 'url': 'https://t.co/tlfuZ25IMi', 'display_url': 'pic.twitter.com/tlfuZ25IMi', 'expanded_url': 'https://twitter.com/dog_rates/status/816091915477250048/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 675, 'h': 1200, 'resize': 'fit'}, 'small': {'w': 383, 'h': 680, 'resize': 'fit'}, 'large': {'w': 1152, 'h': 2048, 'resize': 'fit'}}}, {'id': 816091906107199490, 'id_str': '816091906107199490', 'indices': [92, 115], 'media_url': 'http://pbs.twimg.com/media/C1NXQ8eXUAIlKjw.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1NXQ8eXUAIlKjw.jpg', 'url': 'https://t.co/tlfuZ25IMi', 'display_url': 'pic.twitter.com/tlfuZ25IMi', 'expanded_url': 'https://twitter.com/dog_rates/status/816091915477250048/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 510, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 900, 'h': 1200, 'resize': 'fit'}, 'large': {'w': 1536, 'h': 2048, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 1976, 'favorite_count': 8456, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
{'created_at': 'Mon Jan 02 23:23:48 +0000 2017', 'id': 816062466425819140, 'id_str': '816062466425819140', 'full_text': "RT @dog_rates: Meet Jack. He's one of the rare doggos that doesn't mind baths. 11/10 click the link to see how you can help Jack!\n\nhttps://…", 'truncated': False, 'display_text_range': [0, 140], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': []}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Mon Jan 02 18:38:42 +0000 2017', 'id': 815990720817401858, 'id_str': '815990720817401858', 'full_text': "Meet Jack. He's one of the rare doggos that doesn't mind baths. 11/10 click the link to see how you can help Jack!\n\nhttps://t.co/r4W111FzAq https://t.co/fQpYuMKG3p", 'truncated': False, 'display_text_range': [0, 139], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [{'url': 'https://t.co/r4W111FzAq', 'expanded_url': 'https://www.gofundme.com/surgeryforjacktheminpin', 'display_url': 'gofundme.com/surgeryforjack…', 'indices': [116, 139]}], 'media': [{'id': 815990706170904578, 'id_str': '815990706170904578', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C1L7OVVWQAIQ6Tt.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1L7OVVWQAIQ6Tt.jpg', 'url': 'https://t.co/fQpYuMKG3p', 'display_url': 'pic.twitter.com/fQpYuMKG3p', 'expanded_url': 'https://twitter.com/dog_rates/status/815990720817401858/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 550, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 749, 'h': 926, 'resize': 'fit'}, 'large': {'w': 749, 'h': 926, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 815990706170904578, 'id_str': '815990706170904578', 'indices': [140, 163], 'media_url': 'http://pbs.twimg.com/media/C1L7OVVWQAIQ6Tt.jpg', 'media_url_https': 'https://pbs.twimg.com/media/C1L7OVVWQAIQ6Tt.jpg', 'url': 'https://t.co/fQpYuMKG3p', 'display_url': 'pic.twitter.com/fQpYuMKG3p', 'expanded_url': 'https://twitter.com/dog_rates/status/815990720817401858/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'small': {'w': 550, 'h': 680, 'resize': 'fit'}, 'medium': {'w': 749, 'h': 926, 'resize': 'fit'}, 'large': {'w': 749, 'h': 926, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 942, 'favorite_count': 4675, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 942, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'lang': 'en'}
{'created_at': 'Mon Jan 02 20:12:21 +0000 2017', 'id': 816014286006976512, 'id_str': '816014286006976512', 'full_text': 'RT @dog_rates: This is Larry. He has no self control. Tongue still nifty af tho 11/10 https://t.co/ghyT4Ubk1r', 'truncated': False, 'display_text_range': [0, 109], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [{'screen_name': 'dog_rates', 'name': 'WeRateDogs®', 'id': 4196983835, 'id_str': '4196983835', 'indices': [3, 13]}], 'urls': [], 'media': [{'id': 732005607704649728, 'id_str': '732005607704649728', 'indices': [86, 109], 'media_url': 'http://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg', 'url': 'https://t.co/ghyT4Ubk1r', 'display_url': 'pic.twitter.com/ghyT4Ubk1r', 'expanded_url': 'https://twitter.com/dog_rates/status/732005617171337216/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 575, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'large': {'w': 575, 'h': 1024, 'resize': 'fit'}}, 'source_status_id': 732005617171337216, 'source_status_id_str': '732005617171337216', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'extended_entities': {'media': [{'id': 732005607704649728, 'id_str': '732005607704649728', 'indices': [86, 109], 'media_url': 'http://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg', 'url': 'https://t.co/ghyT4Ubk1r', 'display_url': 'pic.twitter.com/ghyT4Ubk1r', 'expanded_url': 'https://twitter.com/dog_rates/status/732005617171337216/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 575, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'large': {'w': 575, 'h': 1024, 'resize': 'fit'}}, 'source_status_id': 732005617171337216, 'source_status_id_str': '732005617171337216', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}, {'id': 732005607771774976, 'id_str': '732005607771774976', 'indices': [86, 109], 'media_url': 'http://pbs.twimg.com/media/CiibONDUoAASWY3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CiibONDUoAASWY3.jpg', 'url': 'https://t.co/ghyT4Ubk1r', 'display_url': 'pic.twitter.com/ghyT4Ubk1r', 'expanded_url': 'https://twitter.com/dog_rates/status/732005617171337216/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 575, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 575, 'h': 1024, 'resize': 'fit'}}, 'source_status_id': 732005617171337216, 'source_status_id_str': '732005617171337216', 'source_user_id': 4196983835, 'source_user_id_str': '4196983835'}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'retweeted_status': {'created_at': 'Mon May 16 00:31:53 +0000 2016', 'id': 732005617171337216, 'id_str': '732005617171337216', 'full_text': 'This is Larry. He has no self control. Tongue still nifty af tho 11/10 https://t.co/ghyT4Ubk1r', 'truncated': False, 'display_text_range': [0, 70], 'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': [], 'media': [{'id': 732005607704649728, 'id_str': '732005607704649728', 'indices': [71, 94], 'media_url': 'http://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg', 'url': 'https://t.co/ghyT4Ubk1r', 'display_url': 'pic.twitter.com/ghyT4Ubk1r', 'expanded_url': 'https://twitter.com/dog_rates/status/732005617171337216/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 575, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'large': {'w': 575, 'h': 1024, 'resize': 'fit'}}}]}, 'extended_entities': {'media': [{'id': 732005607704649728, 'id_str': '732005607704649728', 'indices': [71, 94], 'media_url': 'http://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg', 'url': 'https://t.co/ghyT4Ubk1r', 'display_url': 'pic.twitter.com/ghyT4Ubk1r', 'expanded_url': 'https://twitter.com/dog_rates/status/732005617171337216/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'medium': {'w': 575, 'h': 1024, 'resize': 'fit'}, 'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'large': {'w': 575, 'h': 1024, 'resize': 'fit'}}}, {'id': 732005607771774976, 'id_str': '732005607771774976', 'indices': [71, 94], 'media_url': 'http://pbs.twimg.com/media/CiibONDUoAASWY3.jpg', 'media_url_https': 'https://pbs.twimg.com/media/CiibONDUoAASWY3.jpg', 'url': 'https://t.co/ghyT4Ubk1r', 'display_url': 'pic.twitter.com/ghyT4Ubk1r', 'expanded_url': 'https://twitter.com/dog_rates/status/732005617171337216/photo/1', 'type': 'photo', 'sizes': {'small': {'w': 382, 'h': 680, 'resize': 'fit'}, 'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 575, 'h': 1024, 'resize': 'fit'}, 'medium': {'w': 575, 'h': 1024, 'resize': 'fit'}}}]}, 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>', 'in_reply_to_status_id': None, 'in_reply_to_status_id_str': None, 'in_reply_to_user_id': None, 'in_reply_to_user_id_str': None, 'in_reply_to_screen_name': None, 'user': {'id': 4196983835, 'id_str': '4196983835', 'name': 'WeRateDogs®', 'screen_name': 'dog_rates', 'location': 'all our links ➜', 'description': 'Your Only Source For Professional Dog Ratings Instagram and Facebook ➜ WeRateDogs partnerships@weratedogs.com | nonprofit: @15outof10 ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀', 'url': 'https://t.co/YPc2Xq4Va2', 'entities': {'url': {'urls': [{'url': 'https://t.co/YPc2Xq4Va2', 'expanded_url': 'http://links.weratedogs.com', 'display_url': 'links.weratedogs.com', 'indices': [0, 23]}]}, 'description': {'urls': []}}, 'protected': False, 'followers_count': 9364488, 'friends_count': 21, 'listed_count': 7626, 'created_at': 'Sun Nov 15 21:41:29 +0000 2015', 'favourites_count': 147618, 'utc_offset': None, 'time_zone': None, 'geo_enabled': True, 'verified': True, 'statuses_count': 16228, 'lang': None, 'contributors_enabled': False, 'is_translator': False, 'is_translation_enabled': False, 'profile_background_color': '000000', 'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png', 'profile_background_tile': False, 'profile_image_url': 'http://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1552995729014247425/TaJbIdmK_normal.jpg', 'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1661991479', 'profile_link_color': 'F5ABB5', 'profile_sidebar_border_color': '000000', 'profile_sidebar_fill_color': '000000', 'profile_text_color': '000000', 'profile_use_background_image': False, 'has_extended_profile': False, 'default_profile': False, 'default_profile_image': False, 'following': False, 'follow_request_sent': False, 'notifications': False, 'translator_type': 'none', 'withheld_in_countries': []}, 'geo': None, 'coordinates': None, 'place': None, 'contributors': None, 'is_quote_status': False, 'retweet_count': 4858, 'favorite_count': 13643, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}, 'is_quote_status': False, 'retweet_count': 4858, 'favorite_count': 0, 'favorited': False, 'retweeted': False, 'possibly_sensitive': False, 'possibly_sensitive_appealable': False, 'lang': 'en'}
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--NotebookApp.iopub_data_rate_limit`.

Current values:
NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
NotebookApp.rate_limit_window=3.0 (secs)

In [7]:
tweets_info= pd.DataFrame(tweets_info, columns= ['id', 'retweet_count','favourite_count'])
tweets_info.head()
Out[7]:
id retweet_count favourite_count
0 892420643555336193 6965 NaN
1 892177421306343426 5269 NaN
2 891815181378084864 3463 NaN
3 891689557279858688 7190 NaN
4 891327558926688256 7710 NaN
In [8]:
tweets_info.to_csv('tweets_info.csv', index= False)
In [9]:
tweets_info.head()
Out[9]:
id retweet_count favourite_count
0 892420643555336193 6965 NaN
1 892177421306343426 5269 NaN
2 891815181378084864 3463 NaN
3 891689557279858688 7190 NaN
4 891327558926688256 7710 NaN
In [10]:
tweets_info.tail()
Out[10]:
id retweet_count favourite_count
2321 666049248165822465 36 NaN
2322 666044226329800704 114 NaN
2323 666033412701032449 36 NaN
2324 666029285002620928 39 NaN
2325 666020888022790149 419 NaN
In [11]:
tweets_info.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2326 entries, 0 to 2325
Data columns (total 3 columns):
 #   Column           Non-Null Count  Dtype  
---  ------           --------------  -----  
 0   id               2326 non-null   int64  
 1   retweet_count    2326 non-null   int64  
 2   favourite_count  0 non-null      float64
dtypes: float64(1), int64(2)
memory usage: 54.6 KB

Assessing¶

a. Assessing Enhanced Twitter Archive¶

In [12]:
twit_arc.head()
Out[12]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo
0 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... NaN NaN NaN https://twitter.com/dog_rates/status/892420643... 13 10 Phineas None None None None
1 892177421306343426 NaN NaN 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... NaN NaN NaN https://twitter.com/dog_rates/status/892177421... 13 10 Tilly None None None None
2 891815181378084864 NaN NaN 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... NaN NaN NaN https://twitter.com/dog_rates/status/891815181... 12 10 Archie None None None None
3 891689557279858688 NaN NaN 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... NaN NaN NaN https://twitter.com/dog_rates/status/891689557... 13 10 Darla None None None None
4 891327558926688256 NaN NaN 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... NaN NaN NaN https://twitter.com/dog_rates/status/891327558... 12 10 Franklin None None None None
In [13]:
twit_arc.sample(10)
Out[13]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo
1703 680913438424612864 NaN NaN 2015-12-27 00:49:49 +0000 <a href="http://twitter.com/download/iphone" r... Meet Griswold. He's dapper as hell. Already pu... NaN NaN NaN https://twitter.com/dog_rates/status/680913438... 11 10 Griswold None None None None
358 830097400375152640 NaN NaN 2017-02-10 16:53:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Samson. He's absolute fluffy perfection. ... NaN NaN NaN https://www.gofundme.com/sick-baby-samson,http... 13 10 Samson None None None None
178 857263160327368704 NaN NaN 2017-04-26 16:00:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar and Oliver. Oliver shrunk Oscar.... NaN NaN NaN https://twitter.com/dog_rates/status/857263160... 13 10 Oscar None None None None
1391 700143752053182464 NaN NaN 2016-02-18 02:24:13 +0000 <a href="http://twitter.com/download/iphone" r... When it's Janet from accounting's birthday but... NaN NaN NaN https://twitter.com/dog_rates/status/700143752... 10 10 None None None pupper None
888 759846353224826880 NaN NaN 2016-07-31 20:21:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Kirby. He's a Beneblip Cumberpat. Pret... NaN NaN NaN https://twitter.com/dog_rates/status/759846353... 11 10 Kirby None None None None
204 852936405516943360 NaN NaN 2017-04-14 17:27:40 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: I usually only share these on F... 8.316501e+17 4.196984e+09 2017-02-14 23:43:18 +0000 http://www.gofundme.com/bluethewhitehusky,http... 13 10 None None None None None
2029 671855973984772097 NaN NaN 2015-12-02 00:58:41 +0000 <a href="http://twitter.com/download/iphone" r... Remarkable dog here. Walks on back legs really... NaN NaN NaN https://twitter.com/dog_rates/status/671855973... 8 10 None None None None None
2239 667937095915278337 NaN NaN 2015-11-21 05:26:27 +0000 <a href="http://twitter.com/download/iphone" r... This dog resembles a baked potato. Bed looks u... NaN NaN NaN https://twitter.com/dog_rates/status/667937095... 3 10 None None None None None
617 796387464403357696 NaN NaN 2016-11-09 16:22:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Snicku. He's having trouble reading be... NaN NaN NaN https://twitter.com/dog_rates/status/796387464... 12 10 Snicku None None None None
1573 687494652870668288 NaN NaN 2016-01-14 04:41:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Marq. He stole this car. 7/10 wtf Marq... NaN NaN NaN https://twitter.com/dog_rates/status/687494652... 7 10 Marq None None None None
In [14]:
twit_arc.tail()
Out[14]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo
2351 666049248165822465 NaN NaN 2015-11-16 00:24:50 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a 1949 1st generation vulpix. Enj... NaN NaN NaN https://twitter.com/dog_rates/status/666049248... 5 10 None None None None None
2352 666044226329800704 NaN NaN 2015-11-16 00:04:52 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Piers Morgan. Loves to Netf... NaN NaN NaN https://twitter.com/dog_rates/status/666044226... 6 10 a None None None None
2353 666033412701032449 NaN NaN 2015-11-15 23:21:54 +0000 <a href="http://twitter.com/download/iphone" r... Here is a very happy pup. Big fan of well-main... NaN NaN NaN https://twitter.com/dog_rates/status/666033412... 9 10 a None None None None
2354 666029285002620928 NaN NaN 2015-11-15 23:05:30 +0000 <a href="http://twitter.com/download/iphone" r... This is a western brown Mitsubishi terrier. Up... NaN NaN NaN https://twitter.com/dog_rates/status/666029285... 7 10 a None None None None
2355 666020888022790149 NaN NaN 2015-11-15 22:32:08 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Japanese Irish Setter. Lost eye... NaN NaN NaN https://twitter.com/dog_rates/status/666020888... 8 10 None None None None None
In [15]:
twit_arc.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2356 entries, 0 to 2355
Data columns (total 17 columns):
 #   Column                      Non-Null Count  Dtype  
---  ------                      --------------  -----  
 0   tweet_id                    2356 non-null   int64  
 1   in_reply_to_status_id       78 non-null     float64
 2   in_reply_to_user_id         78 non-null     float64
 3   timestamp                   2356 non-null   object 
 4   source                      2356 non-null   object 
 5   text                        2356 non-null   object 
 6   retweeted_status_id         181 non-null    float64
 7   retweeted_status_user_id    181 non-null    float64
 8   retweeted_status_timestamp  181 non-null    object 
 9   expanded_urls               2297 non-null   object 
 10  rating_numerator            2356 non-null   int64  
 11  rating_denominator          2356 non-null   int64  
 12  name                        2356 non-null   object 
 13  doggo                       2356 non-null   object 
 14  floofer                     2356 non-null   object 
 15  pupper                      2356 non-null   object 
 16  puppo                       2356 non-null   object 
dtypes: float64(4), int64(3), object(10)
memory usage: 313.0+ KB
In [16]:
twit_arc.describe()
Out[16]:
tweet_id in_reply_to_status_id in_reply_to_user_id retweeted_status_id retweeted_status_user_id rating_numerator rating_denominator
count 2.356000e+03 7.800000e+01 7.800000e+01 1.810000e+02 1.810000e+02 2356.000000 2356.000000
mean 7.427716e+17 7.455079e+17 2.014171e+16 7.720400e+17 1.241698e+16 13.126486 10.455433
std 6.856705e+16 7.582492e+16 1.252797e+17 6.236928e+16 9.599254e+16 45.876648 6.745237
min 6.660209e+17 6.658147e+17 1.185634e+07 6.661041e+17 7.832140e+05 0.000000 0.000000
25% 6.783989e+17 6.757419e+17 3.086374e+08 7.186315e+17 4.196984e+09 10.000000 10.000000
50% 7.196279e+17 7.038708e+17 4.196984e+09 7.804657e+17 4.196984e+09 11.000000 10.000000
75% 7.993373e+17 8.257804e+17 4.196984e+09 8.203146e+17 4.196984e+09 12.000000 10.000000
max 8.924206e+17 8.862664e+17 8.405479e+17 8.874740e+17 7.874618e+17 1776.000000 170.000000
In [17]:
twit_arc['source'].value_counts()
Out[17]:
<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>     2221
<a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a>                          91
<a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>                       33
<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>      11
Name: source, dtype: int64
In [18]:
#sort by denominator values
twit_arc['rating_denominator'].value_counts()
Out[18]:
10     2333
11        3
50        3
20        2
80        2
70        1
7         1
15        1
150       1
170       1
0         1
90        1
40        1
130       1
110       1
16        1
120       1
2         1
Name: rating_denominator, dtype: int64
In [19]:
twit_arc['rating_numerator'].value_counts()
Out[19]:
12      558
11      464
10      461
13      351
9       158
8       102
7        55
14       54
5        37
6        32
3        19
4        17
2         9
1         9
75        2
15        2
420       2
0         2
80        1
144       1
17        1
26        1
20        1
121       1
143       1
44        1
60        1
45        1
50        1
99        1
204       1
1776      1
165       1
666       1
27        1
182       1
24        1
960       1
84        1
88        1
Name: rating_numerator, dtype: int64
In [20]:
twit_arc[twit_arc.rating_numerator <10].tweet_id
Out[20]:
45      883482846933004288
229     848212111729840128
315     835152434251116546
387     826598799820865537
462     817502432452313088
               ...        
2351    666049248165822465
2352    666044226329800704
2353    666033412701032449
2354    666029285002620928
2355    666020888022790149
Name: tweet_id, Length: 440, dtype: int64
In [21]:
twit_arc.rating_denominator.describe()
#some denominators have a 0 value
Out[21]:
count    2356.000000
mean       10.455433
std         6.745237
min         0.000000
25%        10.000000
50%        10.000000
75%        10.000000
max       170.000000
Name: rating_denominator, dtype: float64
In [22]:
#Records which are retweets
len(twit_arc[twit_arc.retweeted_status_timestamp.isnull()== False])
Out[22]:
181
In [23]:
#check for duplicate values
sum(twit_arc.duplicated())
Out[23]:
0
In [24]:
twit_arc.name.value_counts()
Out[24]:
None          745
a              55
Charlie        12
Cooper         11
Lucy           11
             ... 
Dex             1
Ace             1
Tayzie          1
Grizzie         1
Christoper      1
Name: name, Length: 957, dtype: int64

Observations For Enhanced Twitter Archive¶

Quality¶

* There are retweets present in the data
* Dog names are not consistent
* ID variables are sometimes integers or floats (numeric)
* Column names are not always meaningful 
* Retweeted_status_timestamp is not a datetime variable
* Source values are formatted as <a href=url <a/>
* Some rating numerators less than 10
* "retweeted_status" variables are numeric
* Some rating denominators are not equal 10


Structure¶

* Doggo,floofer,pupper and puppo all refer to the same measurement "dog stage"
* Source and expanded urls have several information
* There is more than one stage filled for individual dogs

b. Assessing Tweet Image Predictions¶

In [25]:
image_predictions.head()
Out[25]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog
0 666020888022790149 https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh_springer_spaniel 0.465074 True collie 0.156665 True Shetland_sheepdog 0.061428 True
1 666029285002620928 https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 redbone 0.506826 True miniature_pinscher 0.074192 True Rhodesian_ridgeback 0.072010 True
2 666033412701032449 https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German_shepherd 0.596461 True malinois 0.138584 True bloodhound 0.116197 True
3 666044226329800704 https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian_ridgeback 0.408143 True redbone 0.360687 True miniature_pinscher 0.222752 True
4 666049248165822465 https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 miniature_pinscher 0.560311 True Rottweiler 0.243682 True Doberman 0.154629 True
In [26]:
image_predictions.shape
Out[26]:
(2075, 12)
In [27]:
image_predictions.sample(10)
Out[27]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog
1580 796387464403357696 https://pbs.twimg.com/media/Cw1WKu1UQAAvWsu.jpg 1 Pekinese 0.461164 True Pomeranian 0.288650 True Siamese_cat 0.052423 False
794 690932576555528194 https://pbs.twimg.com/media/CZavgf4WkAARpFM.jpg 1 snorkel 0.526536 False muzzle 0.048089 False scuba_diver 0.034226 False
241 670444955656130560 https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg 1 English_springer 0.403698 True Brittany_spaniel 0.347609 True Welsh_springer_spaniel 0.137186 True
1061 715200624753819648 https://pbs.twimg.com/media/CeznK6IWEAEFUPq.jpg 1 Chihuahua 0.956787 True beagle 0.008383 True Labrador_retriever 0.008344 True
870 697881462549430272 https://pbs.twimg.com/media/Ca9feqDUAAA_z7T.jpg 1 washbasin 0.176423 False paper_towel 0.167462 False toilet_tissue 0.098029 False
78 667443425659232256 https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg 1 goose 0.980815 False drake 0.006918 False hen 0.005255 False
1591 798665375516884993 https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg 1 chow 0.243529 True hamster 0.227150 False Pomeranian 0.056057 True
1910 853299958564483072 https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg 1 grille 0.652280 False beach_wagon 0.112846 False convertible 0.086252 False
639 681297372102656000 https://pbs.twimg.com/media/CXR0WJ_W8AMd_O8.jpg 1 Lhasa 0.482401 True Shih-Tzu 0.113672 True Pomeranian 0.096229 True
1345 759159934323924993 https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg 1 Irish_terrier 0.254856 True briard 0.227716 True soft-coated_wheaten_terrier 0.223263 True
In [28]:
image_predictions.info
Out[28]:
<bound method DataFrame.info of                 tweet_id                                          jpg_url  \
0     666020888022790149  https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg   
1     666029285002620928  https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg   
2     666033412701032449  https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg   
3     666044226329800704  https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg   
4     666049248165822465  https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg   
...                  ...                                              ...   
2070  891327558926688256  https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg   
2071  891689557279858688  https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg   
2072  891815181378084864  https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg   
2073  892177421306343426  https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg   
2074  892420643555336193  https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg   

      img_num                      p1   p1_conf  p1_dog                  p2  \
0           1  Welsh_springer_spaniel  0.465074    True              collie   
1           1                 redbone  0.506826    True  miniature_pinscher   
2           1         German_shepherd  0.596461    True            malinois   
3           1     Rhodesian_ridgeback  0.408143    True             redbone   
4           1      miniature_pinscher  0.560311    True          Rottweiler   
...       ...                     ...       ...     ...                 ...   
2070        2                  basset  0.555712    True    English_springer   
2071        1             paper_towel  0.170278   False  Labrador_retriever   
2072        1               Chihuahua  0.716012    True            malamute   
2073        1               Chihuahua  0.323581    True            Pekinese   
2074        1                  orange  0.097049   False               bagel   

       p2_conf  p2_dog                           p3   p3_conf  p3_dog  
0     0.156665    True            Shetland_sheepdog  0.061428    True  
1     0.074192    True          Rhodesian_ridgeback  0.072010    True  
2     0.138584    True                   bloodhound  0.116197    True  
3     0.360687    True           miniature_pinscher  0.222752    True  
4     0.243682    True                     Doberman  0.154629    True  
...        ...     ...                          ...       ...     ...  
2070  0.225770    True  German_short-haired_pointer  0.175219    True  
2071  0.168086    True                      spatula  0.040836   False  
2072  0.078253    True                       kelpie  0.031379    True  
2073  0.090647    True                     papillon  0.068957    True  
2074  0.085851   False                       banana  0.076110   False  

[2075 rows x 12 columns]>
In [29]:
image_predictions.img_num.unique()
Out[29]:
array([1, 4, 2, 3], dtype=int64)
In [30]:
sum(image_predictions.jpg_url.duplicated()==True)
Out[30]:
66
In [31]:
sum(image_predictions.duplicated())
Out[31]:
0
In [32]:
image_predictions['img_num'].value_counts()
Out[32]:
1    1780
2     198
3      66
4      31
Name: img_num, dtype: int64
In [33]:
image_predictions.describe()
Out[33]:
tweet_id img_num p1_conf p2_conf p3_conf
count 2.075000e+03 2075.000000 2075.000000 2.075000e+03 2.075000e+03
mean 7.384514e+17 1.203855 0.594548 1.345886e-01 6.032417e-02
std 6.785203e+16 0.561875 0.271174 1.006657e-01 5.090593e-02
min 6.660209e+17 1.000000 0.044333 1.011300e-08 1.740170e-10
25% 6.764835e+17 1.000000 0.364412 5.388625e-02 1.622240e-02
50% 7.119988e+17 1.000000 0.588230 1.181810e-01 4.944380e-02
75% 7.932034e+17 1.000000 0.843855 1.955655e-01 9.180755e-02
max 8.924206e+17 4.000000 1.000000 4.880140e-01 2.734190e-01

Observations For Tweet Image Predictions¶

Quality¶

* Some column names contain '_' and '-' instead of spaces
* Some names start with an uppercase while some start with a lowercase

c. Assessing Twitter API¶

In [34]:
tweets_info.head()
Out[34]:
id retweet_count favourite_count
0 892420643555336193 6965 NaN
1 892177421306343426 5269 NaN
2 891815181378084864 3463 NaN
3 891689557279858688 7190 NaN
4 891327558926688256 7710 NaN
In [35]:
tweets_info.tail()
Out[35]:
id retweet_count favourite_count
2321 666049248165822465 36 NaN
2322 666044226329800704 114 NaN
2323 666033412701032449 36 NaN
2324 666029285002620928 39 NaN
2325 666020888022790149 419 NaN
In [36]:
tweets_info.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2326 entries, 0 to 2325
Data columns (total 3 columns):
 #   Column           Non-Null Count  Dtype  
---  ------           --------------  -----  
 0   id               2326 non-null   int64  
 1   retweet_count    2326 non-null   int64  
 2   favourite_count  0 non-null      float64
dtypes: float64(1), int64(2)
memory usage: 54.6 KB
In [37]:
tweets_info.describe()
Out[37]:
id retweet_count favourite_count
count 2.326000e+03 2326.000000 0.0
mean 7.418192e+17 2458.441531 NaN
std 6.821091e+16 4161.926695 NaN
min 6.660209e+17 1.000000 NaN
25% 6.780814e+17 493.250000 NaN
50% 7.180382e+17 1144.500000 NaN
75% 7.986600e+17 2847.500000 NaN
max 8.924206e+17 70278.000000 NaN
In [38]:
sum(tweets_info.duplicated())
Out[38]:
0

Observations For Twitter API¶

Quality¶

  • Missing data (the archive dataset has 2356 ids but only 2354 show up)

Clean¶

i. Twitter Archive¶

a. DataFrame Copy¶

In [39]:
twit_arc_copy= twit_arc.copy()
image_predic1= image_predictions.copy()
tweets_infoo= tweets_info.copy()

b. Drop unrequired columns¶

In [40]:
twit_arc_copy['dog_stage']=twit_arc_copy['text'].str.extract('(doggo|floofer|pupper|puppo)')
In [41]:
twit_arc_copy = twit_arc_copy.drop(columns=['doggo','floofer', 'pupper','puppo'])
twit_arc_copy.head()
Out[41]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name dog_stage
0 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... NaN NaN NaN https://twitter.com/dog_rates/status/892420643... 13 10 Phineas NaN
1 892177421306343426 NaN NaN 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... NaN NaN NaN https://twitter.com/dog_rates/status/892177421... 13 10 Tilly NaN
2 891815181378084864 NaN NaN 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... NaN NaN NaN https://twitter.com/dog_rates/status/891815181... 12 10 Archie NaN
3 891689557279858688 NaN NaN 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... NaN NaN NaN https://twitter.com/dog_rates/status/891689557... 13 10 Darla NaN
4 891327558926688256 NaN NaN 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... NaN NaN NaN https://twitter.com/dog_rates/status/891327558... 12 10 Franklin NaN

c. Delete rows that represent retweets¶

In [42]:
twit_arc_copy = twit_arc_copy[twit_arc_copy.retweeted_status_id.isnull()]
twit_arc_copy.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2175 entries, 0 to 2355
Data columns (total 14 columns):
 #   Column                      Non-Null Count  Dtype  
---  ------                      --------------  -----  
 0   tweet_id                    2175 non-null   int64  
 1   in_reply_to_status_id       78 non-null     float64
 2   in_reply_to_user_id         78 non-null     float64
 3   timestamp                   2175 non-null   object 
 4   source                      2175 non-null   object 
 5   text                        2175 non-null   object 
 6   retweeted_status_id         0 non-null      float64
 7   retweeted_status_user_id    0 non-null      float64
 8   retweeted_status_timestamp  0 non-null      object 
 9   expanded_urls               2117 non-null   object 
 10  rating_numerator            2175 non-null   int64  
 11  rating_denominator          2175 non-null   int64  
 12  name                        2175 non-null   object 
 13  dog_stage                   364 non-null    object 
dtypes: float64(4), int64(3), object(7)
memory usage: 254.9+ KB

d. Convert invalid names to Nan¶

In [43]:
twit_arc_copy[twit_arc_copy.name.str.islower()==True]['name'].unique()
Out[43]:
array(['such', 'a', 'quite', 'not', 'one', 'incredibly', 'very', 'my',
       'his', 'an', 'actually', 'just', 'getting', 'mad', 'this',
       'unacceptable', 'all', 'old', 'infuriating', 'the', 'by',
       'officially', 'life', 'light', 'space'], dtype=object)
In [44]:
faulty = ['such', 'a', 'quite', 'not', 'one', 'incredibly', 'very', 'my',
       'his', 'an', 'actually', 'just', 'getting', 'mad', 'this',
       'unacceptable', 'all', 'old', 'infuriating', 'the', 'by',
       'officially', 'life', 'light', 'space']
In [45]:
for x in faulty:
    twit_arc_copy.name.replace(x, 'None', inplace= True)
In [46]:
twit_arc_copy.name.unique()
Out[46]:
array(['Phineas', 'Tilly', 'Archie', 'Darla', 'Franklin', 'None', 'Jax',
       'Zoey', 'Cassie', 'Koda', 'Bruno', 'Ted', 'Stuart', 'Oliver',
       'Jim', 'Zeke', 'Ralphus', 'Gerald', 'Jeffrey', 'Canela', 'Maya',
       'Mingus', 'Derek', 'Roscoe', 'Waffles', 'Jimbo', 'Maisey', 'Earl',
       'Lola', 'Kevin', 'Yogi', 'Noah', 'Bella', 'Grizzwald', 'Rusty',
       'Gus', 'Stanley', 'Alfy', 'Koko', 'Rey', 'Gary', 'Elliot', 'Louis',
       'Jesse', 'Romeo', 'Bailey', 'Duddles', 'Jack', 'Steven', 'Beau',
       'Snoopy', 'Shadow', 'Emmy', 'Aja', 'Penny', 'Dante', 'Nelly',
       'Ginger', 'Benedict', 'Venti', 'Goose', 'Nugget', 'Cash', 'Jed',
       'Sebastian', 'Sierra', 'Monkey', 'Harry', 'Kody', 'Lassie',
       'Rover', 'Napolean', 'Boomer', 'Cody', 'Rumble', 'Clifford',
       'Dewey', 'Scout', 'Gizmo', 'Walter', 'Cooper', 'Harold', 'Shikha',
       'Lili', 'Jamesy', 'Coco', 'Sammy', 'Meatball', 'Paisley', 'Albus',
       'Neptune', 'Belle', 'Quinn', 'Zooey', 'Dave', 'Jersey', 'Hobbes',
       'Burt', 'Lorenzo', 'Carl', 'Jordy', 'Milky', 'Trooper', 'Sophie',
       'Wyatt', 'Rosie', 'Thor', 'Oscar', 'Callie', 'Cermet', 'Marlee',
       'Arya', 'Einstein', 'Alice', 'Rumpole', 'Benny', 'Aspen', 'Jarod',
       'Wiggles', 'General', 'Sailor', 'Iggy', 'Snoop', 'Kyle', 'Leo',
       'Riley', 'Noosh', 'Odin', 'Jerry', 'Georgie', 'Rontu', 'Cannon',
       'Furzey', 'Daisy', 'Tuck', 'Barney', 'Vixen', 'Jarvis', 'Mimosa',
       'Pickles', 'Brady', 'Luna', 'Charlie', 'Margo', 'Sadie', 'Hank',
       'Tycho', 'Indie', 'Winnie', 'George', 'Bentley', 'Max', 'Dawn',
       'Maddie', 'Monty', 'Sojourner', 'Winston', 'Odie', 'Arlo',
       'Vincent', 'Lucy', 'Clark', 'Mookie', 'Meera', 'Ava', 'Eli', 'Ash',
       'Tucker', 'Tobi', 'Chester', 'Wilson', 'Sunshine', 'Lipton',
       'Bronte', 'Poppy', 'Gidget', 'Rhino', 'Willow', 'Orion', 'Eevee',
       'Smiley', 'Miguel', 'Emanuel', 'Kuyu', 'Dutch', 'Pete', 'Scooter',
       'Reggie', 'Lilly', 'Samson', 'Mia', 'Astrid', 'Malcolm', 'Dexter',
       'Alfie', 'Fiona', 'Mutt', 'Bear', 'Doobert', 'Beebop', 'Alexander',
       'Sailer', 'Brutus', 'Kona', 'Boots', 'Ralphie', 'Loki', 'Cupid',
       'Pawnd', 'Pilot', 'Ike', 'Mo', 'Toby', 'Sweet', 'Pablo', 'Nala',
       'Crawford', 'Gabe', 'Jimison', 'Duchess', 'Harlso', 'Sundance',
       'Luca', 'Flash', 'Sunny', 'Howie', 'Jazzy', 'Anna', 'Finn', 'Bo',
       'Wafer', 'Tom', 'Florence', 'Autumn', 'Buddy', 'Dido', 'Eugene',
       'Ken', 'Strudel', 'Tebow', 'Chloe', 'Timber', 'Binky', 'Moose',
       'Dudley', 'Comet', 'Akumi', 'Titan', 'Olivia', 'Alf', 'Oshie',
       'Chubbs', 'Sky', 'Atlas', 'Eleanor', 'Layla', 'Rocky', 'Baron',
       'Tyr', 'Bauer', 'Swagger', 'Brandi', 'Mary', 'Moe', 'Halo',
       'Augie', 'Craig', 'Sam', 'Hunter', 'Pavlov', 'Phil', 'Kyro',
       'Wallace', 'Ito', 'Seamus', 'Ollie', 'Stephan', 'Lennon', 'Major',
       'Duke', 'Sansa', 'Shooter', 'Django', 'Diogi', 'Sonny', 'Marley',
       'Severus', 'Ronnie', 'Milo', 'Bones', 'Mauve', 'Chef', 'Doc',
       'Peaches', 'Sobe', 'Longfellow', 'Mister', 'Iroh', 'Pancake',
       'Snicku', 'Ruby', 'Brody', 'Mack', 'Nimbus', 'Laika', 'Maximus',
       'Dobby', 'Moreton', 'Juno', 'Maude', 'Lily', 'Newt', 'Benji',
       'Nida', 'Robin', 'Monster', 'BeBe', 'Remus', 'Levi', 'Mabel',
       'Misty', 'Betty', 'Mosby', 'Maggie', 'Bruce', 'Happy', 'Ralphy',
       'Brownie', 'Rizzy', 'Stella', 'Butter', 'Frank', 'Tonks',
       'Lincoln', 'Rory', 'Logan', 'Dale', 'Rizzo', 'Arnie', 'Mattie',
       'Pinot', 'Dallas', 'Hero', 'Frankie', 'Stormy', 'Reginald',
       'Balto', 'Mairi', 'Loomis', 'Godi', 'Cali', 'Deacon', 'Timmy',
       'Sampson', 'Chipson', 'Combo', 'Oakley', 'Dash', 'Hercules', 'Jay',
       'Mya', 'Strider', 'Wesley', 'Solomon', 'Huck', 'O', 'Blue',
       'Anakin', 'Finley', 'Sprinkles', 'Heinrich', 'Shakespeare',
       'Chelsea', 'Bungalo', 'Chip', 'Grey', 'Roosevelt', 'Willem',
       'Davey', 'Dakota', 'Fizz', 'Dixie', 'Al', 'Jackson', 'Carbon',
       'Klein', 'DonDon', 'Kirby', 'Lou', 'Chevy', 'Tito', 'Philbert',
       'Louie', 'Rupert', 'Rufus', 'Brudge', 'Shadoe', 'Angel', 'Brat',
       'Tove', 'Gromit', 'Aubie', 'Kota', 'Leela', 'Glenn', 'Shelby',
       'Sephie', 'Bonaparte', 'Albert', 'Wishes', 'Rose', 'Theo', 'Rocco',
       'Fido', 'Emma', 'Spencer', 'Lilli', 'Boston', 'Brandonald',
       'Corey', 'Leonard', 'Beckham', 'Devón', 'Gert', 'Watson', 'Keith',
       'Dex', 'Ace', 'Tayzie', 'Grizzie', 'Fred', 'Gilbert', 'Meyer',
       'Zoe', 'Stewie', 'Calvin', 'Lilah', 'Spanky', 'Jameson', 'Piper',
       'Atticus', 'Blu', 'Dietrich', 'Divine', 'Tripp', 'Cora', 'Huxley',
       'Keurig', 'Bookstore', 'Linus', 'Abby', 'Shiloh', 'Gustav',
       'Arlen', 'Percy', 'Lenox', 'Sugar', 'Harvey', 'Blanket', 'Geno',
       'Stark', 'Beya', 'Kilo', 'Kayla', 'Maxaroni', 'Bell', 'Doug',
       'Edmund', 'Aqua', 'Theodore', 'Baloo', 'Chase', 'Nollie', 'Rorie',
       'Simba', 'Charles', 'Bayley', 'Axel', 'Storkson', 'Remy',
       'Chadrick', 'Kellogg', 'Buckley', 'Livvie', 'Terry', 'Hermione',
       'Ralpher', 'Aldrick', 'Larry', 'Rooney', 'Crystal', 'Ziva',
       'Stefan', 'Pupcasso', 'Puff', 'Flurpson', 'Coleman', 'Enchilada',
       'Raymond', 'Rueben', 'Cilantro', 'Karll', 'Sprout', 'Blitz',
       'Bloop', 'Colby', 'Lillie', 'Ashleigh', 'Kreggory', 'Sarge',
       'Luther', 'Ivar', 'Jangle', 'Schnitzel', 'Panda', 'Berkeley',
       'Ralphé', 'Charleson', 'Clyde', 'Harnold', 'Sid', 'Pippa', 'Otis',
       'Carper', 'Bowie', 'Alexanderson', 'Suki', 'Barclay', 'Skittle',
       'Ebby', 'Flávio', 'Smokey', 'Link', 'Jennifur', 'Ozzy', 'Bluebert',
       'Stephanus', 'Bubbles', 'Zeus', 'Bertson', 'Nico',
       'Michelangelope', 'Siba', 'Calbert', 'Curtis', 'Travis', 'Thumas',
       'Kanu', 'Lance', 'Opie', 'Stubert', 'Kane', 'Olive', 'Chuckles',
       'Staniel', 'Sora', 'Beemo', 'Gunner', 'Lacy', 'Tater', 'Olaf',
       'Cecil', 'Vince', 'Karma', 'Billy', 'Walker', 'Rodney', 'Klevin',
       'Malikai', 'Bobble', 'River', 'Jebberson', 'Remington', 'Farfle',
       'Jiminus', 'Harper', 'Clarkus', 'Finnegus', 'Cupcake', 'Kathmandu',
       'Ellie', 'Katie', 'Kara', 'Adele', 'Zara', 'Ambrose', 'Jimothy',
       'Bode', 'Terrenth', 'Reese', 'Chesterson', 'Lucia', 'Bisquick',
       'Ralphson', 'Socks', 'Rambo', 'Rudy', 'Fiji', 'Rilo', 'Bilbo',
       'Coopson', 'Yoda', 'Millie', 'Chet', 'Crouton', 'Daniel', 'Kaia',
       'Murphy', 'Dotsy', 'Eazy', 'Coops', 'Fillup', 'Miley', 'Charl',
       'Reagan', 'Yukon', 'CeCe', 'Cuddles', 'Claude', 'Jessiga',
       'Carter', 'Ole', 'Pherb', 'Blipson', 'Reptar', 'Trevith', 'Berb',
       'Bob', 'Colin', 'Brian', 'Oliviér', 'Grady', 'Kobe', 'Freddery',
       'Bodie', 'Dunkin', 'Wally', 'Tupawc', 'Amber', 'Herschel', 'Edgar',
       'Teddy', 'Kingsley', 'Brockly', 'Richie', 'Molly', 'Vinscent',
       'Cedrick', 'Hazel', 'Lolo', 'Eriq', 'Phred', 'Oddie', 'Maxwell',
       'Geoff', 'Covach', 'Durg', 'Fynn', 'Ricky', 'Herald', 'Lucky',
       'Ferg', 'Trip', 'Clarence', 'Hamrick', 'Brad', 'Pubert', 'Frönq',
       'Derby', 'Lizzie', 'Ember', 'Blakely', 'Opal', 'Marq', 'Kramer',
       'Barry', 'Tyrone', 'Gordon', 'Baxter', 'Mona', 'Horace', 'Crimson',
       'Birf', 'Hammond', 'Lorelei', 'Marty', 'Brooks', 'Petrick',
       'Hubertson', 'Gerbald', 'Oreo', 'Bruiser', 'Perry', 'Bobby',
       'Jeph', 'Obi', 'Tino', 'Kulet', 'Sweets', 'Lupe', 'Tiger',
       'Jiminy', 'Griffin', 'Banjo', 'Brandy', 'Lulu', 'Darrel', 'Taco',
       'Joey', 'Patrick', 'Kreg', 'Todo', 'Tess', 'Ulysses', 'Toffee',
       'Apollo', 'Carly', 'Asher', 'Glacier', 'Chuck', 'Champ', 'Ozzie',
       'Griswold', 'Cheesy', 'Moofasa', 'Hector', 'Goliath', 'Kawhi',
       'Emmie', 'Penelope', 'Willie', 'Rinna', 'Mike', 'William',
       'Dwight', 'Evy', 'Hurley', 'Rubio', 'Chompsky', 'Rascal', 'Linda',
       'Tug', 'Tango', 'Grizz', 'Jerome', 'Crumpet', 'Jessifer', 'Izzy',
       'Ralph', 'Sandy', 'Humphrey', 'Tassy', 'Juckson', 'Chuq', 'Tyrus',
       'Karl', 'Godzilla', 'Vinnie', 'Kenneth', 'Herm', 'Bert', 'Striker',
       'Donny', 'Pepper', 'Bernie', 'Buddah', 'Lenny', 'Arnold', 'Zuzu',
       'Mollie', 'Laela', 'Tedders', 'Superpup', 'Rufio', 'Jeb', 'Rodman',
       'Jonah', 'Chesney', 'Kenny', 'Henry', 'Bobbay', 'Mitch', 'Kaiya',
       'Acro', 'Aiden', 'Obie', 'Dot', 'Shnuggles', 'Kendall', 'Jeffri',
       'Steve', 'Eve', 'Mac', 'Fletcher', 'Kenzie', 'Pumpkin', 'Schnozz',
       'Gustaf', 'Cheryl', 'Ed', 'Leonidas', 'Norman', 'Caryl', 'Scott',
       'Taz', 'Darby', 'Jackie', 'Jazz', 'Franq', 'Pippin', 'Rolf',
       'Snickers', 'Ridley', 'Cal', 'Bradley', 'Bubba', 'Tuco', 'Patch',
       'Mojo', 'Batdog', 'Dylan', 'Mark', 'JD', 'Alejandro', 'Scruffers',
       'Pip', 'Julius', 'Tanner', 'Sparky', 'Anthony', 'Holly', 'Jett',
       'Amy', 'Sage', 'Andy', 'Mason', 'Trigger', 'Antony', 'Creg',
       'Traviss', 'Gin', 'Jeffrie', 'Danny', 'Ester', 'Pluto', 'Bloo',
       'Edd', 'Paull', 'Willy', 'Herb', 'Damon', 'Peanut', 'Nigel',
       'Butters', 'Sandra', 'Fabio', 'Randall', 'Liam', 'Tommy', 'Ben',
       'Raphael', 'Julio', 'Andru', 'Kloey', 'Shawwn', 'Skye', 'Kollin',
       'Ronduh', 'Billl', 'Saydee', 'Dug', 'Tessa', 'Sully', 'Kirk',
       'Ralf', 'Clarq', 'Jaspers', 'Samsom', 'Terrance', 'Harrison',
       'Chaz', 'Jeremy', 'Jaycob', 'Lambeau', 'Ruffles', 'Amélie', 'Bobb',
       'Banditt', 'Kevon', 'Winifred', 'Hanz', 'Churlie', 'Zeek',
       'Timofy', 'Maks', 'Jomathan', 'Kallie', 'Marvin', 'Spark',
       'Gòrdón', 'Jo', 'DayZ', 'Jareld', 'Torque', 'Ron', 'Skittles',
       'Cleopatricia', 'Erik', 'Stu', 'Tedrick', 'Shaggy', 'Filup',
       'Kial', 'Naphaniel', 'Dook', 'Hall', 'Philippe', 'Biden', 'Fwed',
       'Genevieve', 'Joshwa', 'Timison', 'Bradlay', 'Pipsy', 'Clybe',
       'Keet', 'Carll', 'Jockson', 'Josep', 'Lugan', 'Christoper'],
      dtype=object)
In [47]:
twit_arc_copy.rating_denominator= twit_arc_copy['rating_denominator']=10
In [48]:
twit_arc_copy.rating_denominator.unique()
Out[48]:
array([10], dtype=int64)

e. Coverting tweet_id to string¶

In [49]:
twit_arc_copy.tweet_id = twit_arc_copy.tweet_id.astype(str)
In [50]:
twit_arc_copy.info() 
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2175 entries, 0 to 2355
Data columns (total 14 columns):
 #   Column                      Non-Null Count  Dtype  
---  ------                      --------------  -----  
 0   tweet_id                    2175 non-null   object 
 1   in_reply_to_status_id       78 non-null     float64
 2   in_reply_to_user_id         78 non-null     float64
 3   timestamp                   2175 non-null   object 
 4   source                      2175 non-null   object 
 5   text                        2175 non-null   object 
 6   retweeted_status_id         0 non-null      float64
 7   retweeted_status_user_id    0 non-null      float64
 8   retweeted_status_timestamp  0 non-null      object 
 9   expanded_urls               2117 non-null   object 
 10  rating_numerator            2175 non-null   int64  
 11  rating_denominator          2175 non-null   int64  
 12  name                        2175 non-null   object 
 13  dog_stage                   364 non-null    object 
dtypes: float64(4), int64(2), object(8)
memory usage: 254.9+ KB

f. Change timestamp coloumns to date¶

In [51]:
twit_arc_copy['timestamp']=pd.to_datetime(twit_arc_copy['timestamp'])
twit_arc_copy['retweeted_status_timestamp']=pd.to_datetime(twit_arc_copy['retweeted_status_timestamp'])

ii. Image Predictions¶

a.Capitalize First Alphabet Of p1, p2 and p3¶

In [52]:
image_predic1.p1 = image_predic1.p1.str.capitalize()
image_predic1.p2 = image_predic1.p2.str.capitalize()
image_predic1.p3 = image_predic1.p3.str.capitalize()
In [53]:
image_predic1.head()
Out[53]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog
0 666020888022790149 https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh_springer_spaniel 0.465074 True Collie 0.156665 True Shetland_sheepdog 0.061428 True
1 666029285002620928 https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 Redbone 0.506826 True Miniature_pinscher 0.074192 True Rhodesian_ridgeback 0.072010 True
2 666033412701032449 https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German_shepherd 0.596461 True Malinois 0.138584 True Bloodhound 0.116197 True
3 666044226329800704 https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian_ridgeback 0.408143 True Redbone 0.360687 True Miniature_pinscher 0.222752 True
4 666049248165822465 https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 Miniature_pinscher 0.560311 True Rottweiler 0.243682 True Doberman 0.154629 True

b. Replce '-' And '_' With Spaces¶

In [54]:
image_predic1.p1 = image_predic1.p1.str.replace('-',' ')
image_predic1.p2 = image_predic1.p2.str.replace('-',' ')
image_predic1.p3 = image_predic1.p3.str.replace('-',' ')
In [55]:
image_predic1.p1 = image_predic1.p1.str.replace('_',' ')
image_predic1.p2 = image_predic1.p2.str.replace('_',' ')
image_predic1.p3 = image_predic1.p3.str.replace('_',' ')
In [56]:
image_predic1.head()
Out[56]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog
0 666020888022790149 https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh springer spaniel 0.465074 True Collie 0.156665 True Shetland sheepdog 0.061428 True
1 666029285002620928 https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 Redbone 0.506826 True Miniature pinscher 0.074192 True Rhodesian ridgeback 0.072010 True
2 666033412701032449 https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German shepherd 0.596461 True Malinois 0.138584 True Bloodhound 0.116197 True
3 666044226329800704 https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian ridgeback 0.408143 True Redbone 0.360687 True Miniature pinscher 0.222752 True
4 666049248165822465 https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 Miniature pinscher 0.560311 True Rottweiler 0.243682 True Doberman 0.154629 True

Twitter API¶

Rows with missing entries were deleted earlier¶

In [57]:
sum(tweets_info.retweet_count.isnull())
Out[57]:
0

Renaming Columns¶

In [58]:
tweets_info.rename(columns={'id':'tweet_id', 'favorite_counts':'likes','retweet_counts':'retweets'}, inplace = True)
In [59]:
tweets_info.head()
Out[59]:
tweet_id retweet_count favourite_count
0 892420643555336193 6965 NaN
1 892177421306343426 5269 NaN
2 891815181378084864 3463 NaN
3 891689557279858688 7190 NaN
4 891327558926688256 7710 NaN
In [60]:
tweets_info.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2326 entries, 0 to 2325
Data columns (total 3 columns):
 #   Column           Non-Null Count  Dtype  
---  ------           --------------  -----  
 0   tweet_id         2326 non-null   int64  
 1   retweet_count    2326 non-null   int64  
 2   favourite_count  0 non-null      float64
dtypes: float64(1), int64(2)
memory usage: 54.6 KB

Change format type from num to string¶

In [61]:
twit_arc_copy['tweet_id']= twit_arc_copy['tweet_id'].astype('str')
image_predic1['tweet_id']= image_predic1['tweet_id'].astype('str')
tweets_info['tweet_id']= tweets_info['tweet_id'].astype('str')
In [62]:
type(twit_arc_copy['tweet_id'].iloc[0])
type(image_predic1['tweet_id'].iloc[0])
type(tweets_info['tweet_id'].iloc[0])
Out[62]:
str

Combine the datasets¶

In [63]:
df_merge= pd.merge(twit_arc_copy, image_predic1, on=['tweet_id'], how= 'inner')
df_merge= pd.merge(df_merge, tweets_info, on=['tweet_id'], how= 'inner')
In [64]:
df_merge.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 1985 entries, 0 to 1984
Data columns (total 27 columns):
 #   Column                      Non-Null Count  Dtype              
---  ------                      --------------  -----              
 0   tweet_id                    1985 non-null   object             
 1   in_reply_to_status_id       23 non-null     float64            
 2   in_reply_to_user_id         23 non-null     float64            
 3   timestamp                   1985 non-null   datetime64[ns, UTC]
 4   source                      1985 non-null   object             
 5   text                        1985 non-null   object             
 6   retweeted_status_id         0 non-null      float64            
 7   retweeted_status_user_id    0 non-null      float64            
 8   retweeted_status_timestamp  0 non-null      datetime64[ns]     
 9   expanded_urls               1985 non-null   object             
 10  rating_numerator            1985 non-null   int64              
 11  rating_denominator          1985 non-null   int64              
 12  name                        1985 non-null   object             
 13  dog_stage                   324 non-null    object             
 14  jpg_url                     1985 non-null   object             
 15  img_num                     1985 non-null   int64              
 16  p1                          1985 non-null   object             
 17  p1_conf                     1985 non-null   float64            
 18  p1_dog                      1985 non-null   bool               
 19  p2                          1985 non-null   object             
 20  p2_conf                     1985 non-null   float64            
 21  p2_dog                      1985 non-null   bool               
 22  p3                          1985 non-null   object             
 23  p3_conf                     1985 non-null   float64            
 24  p3_dog                      1985 non-null   bool               
 25  retweet_count               1985 non-null   int64              
 26  favourite_count             0 non-null      float64            
dtypes: bool(3), datetime64[ns, UTC](1), datetime64[ns](1), float64(8), int64(4), object(10)
memory usage: 393.5+ KB

Rename columns¶

In [65]:
df_merge.rename(columns={'rating_numerator':'numerator','rating_denominator':'denominator'}, inplace= True)

Drop unrequired columns¶

In [66]:
df_merge.drop(['retweeted_status_id','retweeted_status_timestamp','retweeted_status_user_id'],axis= 1, inplace= True)
In [67]:
pd.set_option('display.max_columns', None)
In [68]:
df_merge.head()
Out[68]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text expanded_urls numerator denominator name dog_stage jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog retweet_count favourite_count
0 892420643555336193 NaN NaN 2017-08-01 16:23:56+00:00 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13 10 Phineas NaN https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 Orange 0.097049 False Bagel 0.085851 False Banana 0.076110 False 6965 NaN
1 892177421306343426 NaN NaN 2017-08-01 00:17:27+00:00 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... https://twitter.com/dog_rates/status/892177421... 13 10 Tilly NaN https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 0.090647 True Papillon 0.068957 True 5269 NaN
2 891815181378084864 NaN NaN 2017-07-31 00:18:03+00:00 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... https://twitter.com/dog_rates/status/891815181... 12 10 Archie NaN https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True Malamute 0.078253 True Kelpie 0.031379 True 3463 NaN
3 891689557279858688 NaN NaN 2017-07-30 15:58:51+00:00 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... https://twitter.com/dog_rates/status/891689557... 13 10 Darla NaN https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 Paper towel 0.170278 False Labrador retriever 0.168086 True Spatula 0.040836 False 7190 NaN
4 891327558926688256 NaN NaN 2017-07-29 16:00:24+00:00 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... https://twitter.com/dog_rates/status/891327558... 12 10 Franklin NaN https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 Basset 0.555712 True English springer 0.225770 True German short haired pointer 0.175219 True 7710 NaN

Storing Data¶

In [69]:
df_merge.to_csv('twitter_archive_master.csv', encoding='utf-8', index= False)
wrangled_project= pd.read_csv('twitter_archive_master.csv')
In [70]:
wrangled_project.head()
Out[70]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text expanded_urls numerator denominator name dog_stage jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog retweet_count favourite_count
0 892420643555336193 NaN NaN 2017-08-01 16:23:56+00:00 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... https://twitter.com/dog_rates/status/892420643... 13 10 Phineas NaN https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 Orange 0.097049 False Bagel 0.085851 False Banana 0.076110 False 6965 NaN
1 892177421306343426 NaN NaN 2017-08-01 00:17:27+00:00 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... https://twitter.com/dog_rates/status/892177421... 13 10 Tilly NaN https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 0.090647 True Papillon 0.068957 True 5269 NaN
2 891815181378084864 NaN NaN 2017-07-31 00:18:03+00:00 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... https://twitter.com/dog_rates/status/891815181... 12 10 Archie NaN https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True Malamute 0.078253 True Kelpie 0.031379 True 3463 NaN
3 891689557279858688 NaN NaN 2017-07-30 15:58:51+00:00 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... https://twitter.com/dog_rates/status/891689557... 13 10 Darla NaN https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 Paper towel 0.170278 False Labrador retriever 0.168086 True Spatula 0.040836 False 7190 NaN
4 891327558926688256 NaN NaN 2017-07-29 16:00:24+00:00 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... https://twitter.com/dog_rates/status/891327558... 12 10 Franklin NaN https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 Basset 0.555712 True English springer 0.225770 True German short haired pointer 0.175219 True 7710 NaN
In [71]:
tweets_infoo.head()
Out[71]:
id retweet_count favourite_count
0 892420643555336193 6965 NaN
1 892177421306343426 5269 NaN
2 891815181378084864 3463 NaN
3 891689557279858688 7190 NaN
4 891327558926688256 7710 NaN

Data Visualizing¶

i. Relationship Between Favourite_count and Retweet_count¶

In [72]:
plt.figure(figsize=(12,10))
g = sns.boxplot(x='dog_stage', y= 'retweet_count', data= wrangled_project, palette= 'summer')
g.axes.set_title('Boxplot Between Dog Stages And Retweets', fontsize=20);

Analysis¶

  • There are more dogs in puppo category
  • There are more retweets in doggo category

ii. Top 10 Most Popular Dog Breeds¶

In [73]:
top_10 = wrangled_project[["retweet_count", "p3"]].sort_values(["retweet_count"], ascending=False)[:10]   
top_10
fig = px.scatter(top_10, y= 'p3', x='retweet_count', hover_data = top_10[[ 'p3']], color='p3',
                 title = "Top 10 Most Popular Dog Breeds")
fig.show()

Analysis¶

  • 'Whippet is the most retweeted dog breed

iii. Amount of Each Dog Stage¶

In [74]:
stages_df = twit_arc_copy.dog_stage.value_counts()
In [75]:
stages_df
Out[75]:
pupper     244
doggo       84
puppo       32
floofer      4
Name: dog_stage, dtype: int64
In [76]:
plt.pie(stages_df, labels = ['Pupper','Doggo','Puppo','Floofer'], 
        autopct='%0.0f%%', 
        shadow= False, 
        explode = (0.1, 0.3, 0.2,0.1)
       )
plt.title("Dog Stage Percentage Analysis")
plt.axis('equal')
Out[76]:
(-1.165876169601229,
 1.2978022032445204,
 -1.4422260093804462,
 1.2079709947465178)

Analysis¶

  • Pupper has the highest percentage
  • Floofer has the least percentage
In [ ]: